X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=src%2Futil%2Fwindow.c;h=1aa08774e28f9f93369f5a49b3bdd87f53d4c0f7;hb=367bf8f76227dea6e7e10e974967ae1d60cfe38e;hp=eaab1b7980ed6673bffabc43b554a4cccf5f2598;hpb=c75a021fbda4df34dc017369f877f018855e0609;p=chaz%2Ftint2 diff --git a/src/util/window.c b/src/util/window.c index eaab1b7..1aa0877 100644 --- a/src/util/window.c +++ b/src/util/window.c @@ -33,6 +33,7 @@ #include "window.h" #include "server.h" #include "panel.h" +#include "taskbar.h" @@ -86,8 +87,11 @@ int window_is_hidden (Window win) return 1; } if (at[i] == server.atom._NET_WM_STATE_MODAL) { - XFree(at); - return 1; + // do not add modal windows if the transient window is already in the taskbar + if ( XGetTransientForHint(server.dsp, win, &window) && task_get_task(window) ) { + XFree(at); + return 1; + } } } XFree(at);