From 0867ce743ccf1aec56cef1682ff53fc45460ed77 Mon Sep 17 00:00:00 2001 From: "Andreas.Fink85" Date: Wed, 30 Sep 2009 20:10:24 +0000 Subject: [PATCH] *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 --- src/util/window.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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);