mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 02:04:20 +00:00
revert last commits.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@38364 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
699c768ee7
commit
03869b5d03
4 changed files with 10 additions and 3 deletions
|
@ -1,3 +1,9 @@
|
|||
2015-02-23 Germán Arias <germanandre@gmx.es>
|
||||
|
||||
* Source/GSToolTips.m (+initialize):
|
||||
* Source/GSAutocompleteWindow.m (+defaultWindow):
|
||||
* Source/NSComboBoxCell.m (+defaultPopUp): Revert last commits.
|
||||
|
||||
2015-02-23 Germán Arias <germanandre@gmx.es>
|
||||
|
||||
* Source/GSToolTips.m (+initialize): Use buffered window and
|
||||
|
|
|
@ -63,7 +63,7 @@ static GSAutocompleteWindow *gsWindow = nil;
|
|||
if (gsWindow == nil)
|
||||
gsWindow = [[self alloc] initWithContentRect: NSMakeRect(0,0,200,200)
|
||||
styleMask: NSBorderlessWindowMask
|
||||
backing: NSBackingStoreBuffered
|
||||
backing: backing: NSBackingStoreNonretained
|
||||
defer: YES];
|
||||
|
||||
return gsWindow;
|
||||
|
|
|
@ -233,7 +233,7 @@ static BOOL restoreMouseMoved;
|
|||
|
||||
window = [[GSTTPanel alloc] initWithContentRect: NSMakeRect(0,0,100,25)
|
||||
styleMask: NSBorderlessWindowMask
|
||||
backing: NSBackingStoreBuffered
|
||||
backing: NSBackingStoreRetained
|
||||
defer: YES];
|
||||
|
||||
[window setBackgroundColor:
|
||||
|
@ -241,6 +241,7 @@ static BOOL restoreMouseMoved;
|
|||
[window setReleasedWhenClosed: NO];
|
||||
[window setExcludedFromWindowsMenu: YES];
|
||||
[window setLevel: NSPopUpMenuWindowLevel];
|
||||
[window setAutodisplay: NO];
|
||||
}
|
||||
|
||||
+ (void) removeTipsForView: (NSView*)aView
|
||||
|
|
|
@ -120,7 +120,7 @@ static GSComboWindow *gsWindow = nil;
|
|||
if (gsWindow == nil)
|
||||
gsWindow = [[self alloc] initWithContentRect: NSMakeRect(0,0,200,200)
|
||||
styleMask: NSBorderlessWindowMask
|
||||
backing: NSBackingStoreBuffered
|
||||
backing: backing: NSBackingStoreNonretained // NSBackingStoreBuffered
|
||||
defer: YES];
|
||||
return gsWindow;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue