git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@24363 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2007-01-16 05:25:26 +00:00
parent 156ba79e6e
commit 7bc423f962
2 changed files with 9 additions and 4 deletions

View file

@ -1,3 +1,9 @@
2007-01-15 Adam Fedor <fedor@gnu.org>
* Source/x11/XGServerWindow.m ([XGServer -orderwindow:::]): Set
icon hints regardless of window manager (patch #5434 from Yen-Ju
Chen).
2007-01-14 Richard Frith-Macdonald <rfm@gnu.org>
* Source/x11/XGGLContext.m: Fixup coordinates of subwindow for

View file

@ -2515,12 +2515,11 @@ static BOOL didCreatePixmaps;
XSetWMHints(dpy, window->ident, &window->gen_hints);
/*
* If we are asked to set hints for the appicon and Window Maker is
* to control it, we must let Window maker know that this window is
* If we are asked to set hints for the appicon and the window manager is
* to control it, we must let the window manager know that this window is
* the icon window for the app root window.
*/
if ((window->win_attrs.window_style & NSIconWindowMask) != 0
&& generic.flags.useWindowMakerIcons == 1)
if ((window->win_attrs.window_style & NSIconWindowMask) != 0)
{
XWMHints gen_hints;