X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;ds=sidebyside;f=src%2Futil%2Fwindow.c;h=06ab09359054e334aaedd5b100482a4e7d0072b0;hb=402b36c03316bcbc690eda914e7d97d12188c89f;hp=285d525d8e15edbddf23964978ddbd724cafd4a7;hpb=9920c62290bd174979c2e42cbc72070155a2a4ac;p=chaz%2Ftint2 diff --git a/src/util/window.c b/src/util/window.c index 285d525..06ab093 100644 --- a/src/util/window.c +++ b/src/util/window.c @@ -146,20 +146,18 @@ int window_get_monitor (Window win) int window_is_iconified (Window win) { - if (IconicState == get_property32(win, server.atom.WM_STATE, server.atom.WM_STATE)) { - // openbox sets on shaded windows the IconicState, however we do not consider these windows iconified - Atom *at; - int count, i; - at = server_get_property (win, server.atom._NET_WM_STATE, XA_ATOM, &count); - for (i = 0; i < count; i++) { - if (at[i] == server.atom._NET_WM_STATE_SHADED) { - XFree(at); - return 0; - } + // EWMH specification : minimization of windows use _NET_WM_STATE_HIDDEN. + // WM_STATE is not accurate for shaded window and in multi_desktop mode. + Atom *at; + int count, i; + at = server_get_property (win, server.atom._NET_WM_STATE, XA_ATOM, &count); + for (i = 0; i < count; i++) { + if (at[i] == server.atom._NET_WM_STATE_HIDDEN) { + XFree(at); + return 1; } - XFree(at); - return 1; } + XFree(at); return 0; }