mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 07:00:46 +00:00
Merge pull request #27 from trunkmaster/master
Reduce number of appicon flickering cases
This commit is contained in:
commit
09576eb231
2 changed files with 11 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
2019-04-08 Sergii Stoian <stoyan255@ukr.net>
|
||||
|
||||
* Source/NSApplication.m (becomesKeyOnlyIfNeeded): override NSWindow
|
||||
methodin appicon to reduce number of order front calls. The source
|
||||
of the call is NSWindow's sendEvent:.
|
||||
|
||||
2019-04-06 Sergii Stoian <stoyan255@ukr.net>
|
||||
|
||||
* Headers/Additions/GNUstepGUI/GSDisplayServer.h,
|
||||
|
|
|
@ -434,6 +434,11 @@ NSApplication *NSApp = nil;
|
|||
return NO;
|
||||
}
|
||||
|
||||
- (BOOL) becomesKeyOnlyIfNeeded
|
||||
{
|
||||
return YES;
|
||||
}
|
||||
|
||||
- (BOOL) worksWhenModal
|
||||
{
|
||||
return YES;
|
||||
|
|
Loading…
Reference in a new issue