all repos — tint2 @ 0867ce743ccf1aec56cef1682ff53fc45460ed77

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

*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
Andreas.Fink85 Andreas.Fink85@121b4492-b84c-0410-8b4c-0d4edfb3f3cc
commit

0867ce743ccf1aec56cef1682ff53fc45460ed77

parent

2ded92352d67da47170bc149a800a3de09693f20

1 files changed, 6 insertions(+), 2 deletions(-)

jump to
M src/util/window.csrc/util/window.c

@@ -33,6 +33,7 @@ #include "common.h"

#include "window.h" #include "server.h" #include "panel.h" +#include "taskbar.h"

@@ -86,8 +87,11 @@ XFree(at);

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