all repos — openbox @ 5b288939ab50d32731729239670142d3376429b8

openbox fork - make it a bit more like ryudo

try utf8 for WM_NAME if locale fails, really the _locale functions in prop.c are busted and should be fixed but i have no idea how.
Mikael Magnusson mikachu@comhem.se
commit

5b288939ab50d32731729239670142d3376429b8

parent

f532c9a1de209e8a1bd4ae2c116286b8216dcf52

1 files changed, 2 insertions(+), 1 deletions(-)

jump to
M openbox/client.copenbox/client.c

@@ -1535,7 +1535,8 @@

/* try netwm */ if (!PROP_GETS(self->window, net_wm_name, utf8, &data)) { /* try old x stuff */ - if (!PROP_GETS(self->window, wm_name, locale, &data)) { + if (!PROP_GETS(self->window, wm_name, locale, &data) + && !PROP_GETS(self->window, wm_name, utf8, &data)) { // http://developer.gnome.org/projects/gup/hig/draft_hig_new/windows-alert.html if (self->transient) { data = g_strdup("");