Merge pull request #5035 from marcelofg55/master

Right click->Quit on the godot icon will close the application on OSX
This commit is contained in:
Rémi Verschelde 2016-06-04 18:43:43 +02:00
commit 5b6a8eca94
1 changed files with 4 additions and 5 deletions

View File

@ -139,11 +139,9 @@ 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;
}
@ -1463,6 +1461,7 @@ Point2 OS_OSX::get_window_position() const {
Size2 wp([window_object frame].origin.x, [window_object frame].origin.y);
wp*=display_scale;
return wp;
};