git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@28583 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rfm 2009-09-01 05:20:08 +00:00
parent bf58ad609d
commit 3884d4644a
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> 2009-08-31 Quentin Mathe <quentin.mathe@gmail.com>
* Images/nsmapping.strings: Added NSApplicationIcon to ensure -imageNamed: * Images/nsmapping.strings: Added NSApplicationIcon to ensure
returns a non-nil image even when -[NSApplication finishLaunching] hasn't -imageNamed: returns a non-nil image even when
been called. The behavior is now the same than Cocoa. -[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> 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 orderFront: nil];
[window setAutodisplay: NO];
[window display];
[self _drawText: toolTipText]; [self _drawText: toolTipText];
[window flushWindow];
RELEASE(toolTipText); RELEASE(toolTipText);
} }