Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormano-wii <germano.costa@ig.com.br>2020-01-27 20:17:51 +0300
committermano-wii <germano.costa@ig.com.br>2020-01-27 20:17:51 +0300
commit67f3941dd592d8a02d86450e303b6b7e50857c9c (patch)
tree1b363ee981eee06d065db6176f6c1b8369bcd2c0 /intern/ghost
parent20e803ac6bc655d4d7ffbf02e797b4ab1f3ba0ed (diff)
parentc8103efbe3bfa2487a2866a7cf22e3b7681338ef (diff)
Merge branch 'blender-v2.82-release'
Diffstat (limited to 'intern/ghost')
-rw-r--r--intern/ghost/intern/GHOST_WindowCocoa.mm1
1 files changed, 1 insertions, 0 deletions
diff --git a/intern/ghost/intern/GHOST_WindowCocoa.mm b/intern/ghost/intern/GHOST_WindowCocoa.mm
index 340beef9609..6470bb22fef 100644
--- a/intern/ghost/intern/GHOST_WindowCocoa.mm
+++ b/intern/ghost/intern/GHOST_WindowCocoa.mm
@@ -799,6 +799,7 @@ GHOST_TSuccess GHOST_WindowCocoa::setOrder(GHOST_TWindowOrder order)
GHOST_ASSERT(getValid(), "GHOST_WindowCocoa::setOrder(): window invalid");
if (order == GHOST_kWindowOrderTop) {
+ [NSApp activateIgnoringOtherApps:YES];
[m_window makeKeyAndOrderFront:nil];
}
else {