*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:
parent
2ded92352d
commit
0867ce743c
1 changed files with 6 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue