Omit app icons and mini windows from the pager and task bar even when

they are displayed at normal window level.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@32166 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Wolfgang Lux 2011-02-14 22:40:21 +00:00
parent 544ee725a7
commit ed986c30f8
2 changed files with 10 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2011-02-14 Wolfgang Lux <wolfgang.lux@gmail.com>
* Source/x11/XGServerWindow.m (-orderwindow:::): Omit app icons
and mini windows from the pager and task bar even when they are
displayed at normal window level.
2010-12-11 Fred Kiefer <FredKiefer@gmx.de>
* Source/winlib/WIN32GState.m: Remove a few compiler warnings.

View file

@ -2940,7 +2940,9 @@ static BOOL didCreatePixmaps;
*
* [self _resetDragTypesForWindow: GSWindowWithNumber(window->number)];
*/
if (window->win_attrs.window_level != NSNormalWindowLevel)
if ((window->win_attrs.window_level != NSNormalWindowLevel) ||
((window->win_attrs.window_style &
(NSIconWindowMask|NSMiniWindowMask)) != 0)
{
/*
* Make any window which assumes the desktop level act as the background.
@ -2964,7 +2966,7 @@ static BOOL didCreatePixmaps;
data1: generic.netstates.net_wm_state_skip_taskbar_atom
data2: generic.netstates.net_wm_state_skip_pager_atom
data3: 1];
}
}
}
}
XFlush(dpy);