]> Dogcows Code - chaz/tint2/blobdiff - src/util/window.c
*add* drag'n'drop task reordering
[chaz/tint2] / src / util / window.c
index 06ab09359054e334aaedd5b100482a4e7d0072b0..f4ef6a04ac306277e46d6561a7cda780c150ef02 100644 (file)
@@ -86,12 +86,10 @@ int window_is_hidden (Window win)
                        XFree(at);
                        return 1;
                }
-               if (at[i] == server.atom._NET_WM_STATE_MODAL) {
-                       // do not add modal windows if the transient window is already in the taskbar
-                       if ( XGetTransientForHint(server.dsp, win, &window) && task_get_tasks(window) ) {
-                               XFree(at);
-                               return 1;
-                       }
+               // do not add transient_for windows if the transient window is already in the taskbar
+               if ( XGetTransientForHint(server.dsp, win, &window) && task_get_tasks(window) ) {
+                       XFree(at);
+                       return 1;
                }
        }
        XFree(at);
This page took 0.021573 seconds and 4 git commands to generate.