Right click->Quit on the godot icon will now close the application on OSX.

Fixed get_window_position that missed a return on OSX.

(cherry picked from commit 76ab7d3886)
This commit is contained in:
marcelofg55 2016-06-04 12:35:00 -03:00 committed by Rémi Verschelde
parent c6ef223498
commit bed17e98c8
1 changed files with 3 additions and 5 deletions

View File

@ -139,12 +139,10 @@ static int button_mask=0;
- (NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication *)sender
{
/* _Godotwindow* window;
if (OS_OSX::singleton->get_main_loop())
OS_OSX::singleton->get_main_loop()->notification(MainLoop::NOTIFICATION_WM_QUIT_REQUEST);
for (window = _Godot.windowListHead; window; window = window->next)
_GodotInputWindowCloseRequest(window);
*/
return NSTerminateCancel;
return NSTerminateCancel;
}
- (void)applicationDidHide:(NSNotification *)notification