mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 15:11:37 +00:00
fix #25907
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@28583 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
7a5329dfb6
commit
883dd963de
2 changed files with 13 additions and 3 deletions
12
ChangeLog
12
ChangeLog
|
@ -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>
|
||||
|
||||
|
|
|
@ -582,7 +582,11 @@ static BOOL restoreMouseMoved;
|
|||
|
||||
[window orderFront: nil];
|
||||
|
||||
[window setAutodisplay: NO];
|
||||
[window display];
|
||||
[self _drawText: toolTipText];
|
||||
[window flushWindow];
|
||||
|
||||
RELEASE(toolTipText);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue