diff options
-rw-r--r-- | src/lib/ecore_cocoa/ecore_cocoa_window.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ecore_cocoa/ecore_cocoa_window.m b/src/lib/ecore_cocoa/ecore_cocoa_window.m index 191425064e..c2db749818 100644 --- a/src/lib/ecore_cocoa/ecore_cocoa_window.m +++ b/src/lib/ecore_cocoa/ecore_cocoa_window.m | |||
@@ -508,7 +508,7 @@ ecore_cocoa_window_hide(Ecore_Cocoa_Window *window) | |||
508 | { | 508 | { |
509 | EINA_SAFETY_ON_NULL_RETURN(window); | 509 | EINA_SAFETY_ON_NULL_RETURN(window); |
510 | 510 | ||
511 | if (![window->window isVisible]) | 511 | if ([window->window isVisible]) |
512 | [window->window orderOut:NSApp]; | 512 | [window->window orderOut:NSApp]; |
513 | } | 513 | } |
514 | 514 | ||