*fix* modal windows with hidden parent or no parent are added to the taskbar

git-svn-id: http://tint2.googlecode.com/svn/trunk@212 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
This commit is contained in:
Andreas.Fink85 2009-09-30 20:10:24 +00:00
parent 2ded92352d
commit 0867ce743c

View file

@ -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);