mirror of
https://github.com/godotengine/godot.git
synced 2024-11-21 03:18:37 +08:00
Fix OS X crash when running as .app
This commit is contained in:
parent
bfd1f09ac5
commit
a069685fbb
@ -331,7 +331,8 @@ static Vector2 get_mouse_pos(NSPoint locationInWindow, CGFloat backingScaleFacto
|
|||||||
get_mouse_pos(
|
get_mouse_pos(
|
||||||
[OS_OSX::singleton->window_object mouseLocationOutsideOfEventStream],
|
[OS_OSX::singleton->window_object mouseLocationOutsideOfEventStream],
|
||||||
[OS_OSX::singleton->window_view backingScaleFactor]);
|
[OS_OSX::singleton->window_view backingScaleFactor]);
|
||||||
OS_OSX::singleton->input->set_mouse_position(Point2(mouse_x, mouse_y));
|
if (OS_OSX::singleton->input)
|
||||||
|
OS_OSX::singleton->input->set_mouse_position(Point2(mouse_x, mouse_y));
|
||||||
|
|
||||||
if (OS_OSX::singleton->get_main_loop())
|
if (OS_OSX::singleton->get_main_loop())
|
||||||
OS_OSX::singleton->get_main_loop()->notification(MainLoop::NOTIFICATION_WM_FOCUS_IN);
|
OS_OSX::singleton->get_main_loop()->notification(MainLoop::NOTIFICATION_WM_FOCUS_IN);
|
||||||
|
Loading…
Reference in New Issue
Block a user