mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-06-01 11:31:56 +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
4574de5f17
commit
db17f1ad16
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>
|
2015-02-23 Germán Arias <germanandre@gmx.es>
|
||||||
|
|
||||||
* Source/GSToolTips.m (+initialize): Use buffered window and
|
* Source/GSToolTips.m (+initialize): Use buffered window and
|
||||||
|
|
|
@ -63,7 +63,7 @@ static GSAutocompleteWindow *gsWindow = nil;
|
||||||
if (gsWindow == nil)
|
if (gsWindow == nil)
|
||||||
gsWindow = [[self alloc] initWithContentRect: NSMakeRect(0,0,200,200)
|
gsWindow = [[self alloc] initWithContentRect: NSMakeRect(0,0,200,200)
|
||||||
styleMask: NSBorderlessWindowMask
|
styleMask: NSBorderlessWindowMask
|
||||||
backing: NSBackingStoreBuffered
|
backing: backing: NSBackingStoreNonretained
|
||||||
defer: YES];
|
defer: YES];
|
||||||
|
|
||||||
return gsWindow;
|
return gsWindow;
|
||||||
|
|
|
@ -233,7 +233,7 @@ static BOOL restoreMouseMoved;
|
||||||
|
|
||||||
window = [[GSTTPanel alloc] initWithContentRect: NSMakeRect(0,0,100,25)
|
window = [[GSTTPanel alloc] initWithContentRect: NSMakeRect(0,0,100,25)
|
||||||
styleMask: NSBorderlessWindowMask
|
styleMask: NSBorderlessWindowMask
|
||||||
backing: NSBackingStoreBuffered
|
backing: NSBackingStoreRetained
|
||||||
defer: YES];
|
defer: YES];
|
||||||
|
|
||||||
[window setBackgroundColor:
|
[window setBackgroundColor:
|
||||||
|
@ -241,6 +241,7 @@ static BOOL restoreMouseMoved;
|
||||||
[window setReleasedWhenClosed: NO];
|
[window setReleasedWhenClosed: NO];
|
||||||
[window setExcludedFromWindowsMenu: YES];
|
[window setExcludedFromWindowsMenu: YES];
|
||||||
[window setLevel: NSPopUpMenuWindowLevel];
|
[window setLevel: NSPopUpMenuWindowLevel];
|
||||||
|
[window setAutodisplay: NO];
|
||||||
}
|
}
|
||||||
|
|
||||||
+ (void) removeTipsForView: (NSView*)aView
|
+ (void) removeTipsForView: (NSView*)aView
|
||||||
|
|
|
@ -120,7 +120,7 @@ static GSComboWindow *gsWindow = nil;
|
||||||
if (gsWindow == nil)
|
if (gsWindow == nil)
|
||||||
gsWindow = [[self alloc] initWithContentRect: NSMakeRect(0,0,200,200)
|
gsWindow = [[self alloc] initWithContentRect: NSMakeRect(0,0,200,200)
|
||||||
styleMask: NSBorderlessWindowMask
|
styleMask: NSBorderlessWindowMask
|
||||||
backing: NSBackingStoreBuffered
|
backing: backing: NSBackingStoreNonretained // NSBackingStoreBuffered
|
||||||
defer: YES];
|
defer: YES];
|
||||||
return gsWindow;
|
return gsWindow;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue