git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@28583 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2009-09-01 05:20:08 +00:00
parent 7a5329dfb6
commit 883dd963de
2 changed files with 13 additions and 3 deletions

View file

@ -1,8 +1,14 @@
2009-09-01 Richard Frith-Macdonald <rfm@gnu.org>
* Source/GSToolTips.m: fix bug #25907 by ensuring windows is fully
displayed before we draw to it, and we then flush our drawing.
2009-08-31 Quentin Mathe <quentin.mathe@gmail.com>
* Images/nsmapping.strings: Added NSApplicationIcon to ensure -imageNamed:
returns a non-nil image even when -[NSApplication finishLaunching] hasn't
been called. The behavior is now the same than Cocoa.
* Images/nsmapping.strings: Added NSApplicationIcon to ensure
-imageNamed: returns a non-nil image even when
-[NSApplication finishLaunching] hasn't been called.
The behavior is now the same than Cocoa.
2009-08-28 17:32-EDT Gregory John Casamento <greg.casamento@gmail.com>

View file

@ -582,7 +582,11 @@ static BOOL restoreMouseMoved;
[window orderFront: nil];
[window setAutodisplay: NO];
[window display];
[self _drawText: toolTipText];
[window flushWindow];
RELEASE(toolTipText);
}