mirror of
https://github.com/gnustep/libs-back.git
synced 2025-02-23 11:51:27 +00:00
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:
parent
544ee725a7
commit
ed986c30f8
2 changed files with 10 additions and 2 deletions
|
@ -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.
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue