소스 검색

[macOS] Make `move_window_to_foreground` to take focus in addition to moving window to front.

bruvzg 6 년 전
부모
커밋
ac3158332b
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      platform/osx/os_osx.mm

+ 2 - 1
platform/osx/os_osx.mm

@@ -2324,7 +2324,8 @@ bool OS_OSX::is_window_maximized() const {
 
 void OS_OSX::move_window_to_foreground() {
 
-	[window_object orderFrontRegardless];
+	[[NSApplication sharedApplication] activateIgnoringOtherApps:YES];
+	[window_object makeKeyAndOrderFront:nil];
 }
 
 void OS_OSX::set_window_always_on_top(bool p_enabled) {