diff options
Diffstat (limited to 'src/lib/ecore_cocoa')
-rw-r--r-- | src/lib/ecore_cocoa/ecore_cocoa_window.m | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/lib/ecore_cocoa/ecore_cocoa_window.m b/src/lib/ecore_cocoa/ecore_cocoa_window.m index 5908b596cb..bb133387b3 100644 --- a/src/lib/ecore_cocoa/ecore_cocoa_window.m +++ b/src/lib/ecore_cocoa/ecore_cocoa_window.m | |||
@@ -88,6 +88,18 @@ static NSCursor *_cursors[__ECORE_COCOA_CURSOR_LAST]; | |||
88 | ecore_event_add(ECORE_COCOA_EVENT_WINDOW_DESTROY, event, NULL, NULL); | 88 | ecore_event_add(ECORE_COCOA_EVENT_WINDOW_DESTROY, event, NULL, NULL); |
89 | } | 89 | } |
90 | 90 | ||
91 | /* IS THIS OSX <= 10.10 ONLY? */ | ||
92 | - (void)windowDidEnterFullScreen:(NSNotification *) notif EINA_UNUSED | ||
93 | { | ||
94 | [self requestResize: self.frame.size]; | ||
95 | } | ||
96 | |||
97 | /* IS THIS OSX <= 10.10 ONLY? */ | ||
98 | - (void)windowDidExitFullScreen:(NSNotification *) notif EINA_UNUSED | ||
99 | { | ||
100 | [self requestResize: self.frame.size]; | ||
101 | } | ||
102 | |||
91 | - (void)windowDidResize:(NSNotification *) EINA_UNUSED notif | 103 | - (void)windowDidResize:(NSNotification *) EINA_UNUSED notif |
92 | { | 104 | { |
93 | /* | 105 | /* |