ecore_evas_cocoa: correct focus handlers

Focus handlers are set incorrectly.
It causes windows process focus when they are acttually unfocused.
This patch corrects it.

Signed-off-by: Thiep Ha <thiepha@gmail.com>
This commit is contained in:
Thiep Ha 2016-03-15 08:15:05 +09:00
parent 0ff7429ea7
commit 9c204eb369
1 changed files with 2 additions and 2 deletions

View File

@ -289,10 +289,10 @@ _ecore_evas_cocoa_init(void)
ecore_evas_event_handlers[0] =
ecore_event_handler_add(ECORE_COCOA_EVENT_WINDOW_UNFOCUSED,
_ecore_evas_cocoa_event_got_focus, NULL);
_ecore_evas_cocoa_event_lost_focus, NULL);
ecore_evas_event_handlers[1] =
ecore_event_handler_add(ECORE_COCOA_EVENT_WINDOW_FOCUSED,
_ecore_evas_cocoa_event_lost_focus, NULL);
_ecore_evas_cocoa_event_got_focus, NULL);
ecore_evas_event_handlers[2] =
ecore_event_handler_add(ECORE_COCOA_EVENT_WINDOW_RESIZE_REQUEST,
_ecore_evas_cocoa_event_window_resize, NULL);