summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/ios/qiosapplicationdelegate.mm
diff options
context:
space:
mode:
authorTor Arne Vestbø <tor.arne.vestbo@digia.com>2013-11-11 16:33:21 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-11-14 19:26:20 +0100
commit18182a6275bb353dfb67ebc1562649e7624ccb0c (patch)
tree72c3947502b4fbfb956eb3e9fcb8f69ae164b9c5 /src/plugins/platforms/ios/qiosapplicationdelegate.mm
parente6eadd6f61ae38a49a6bb355c02532cad2aacf4e (diff)
iOS: Handle key window as part of QWindow activation
The default UIWindow may not be the only UIWindow around in a multi screen setup. Change-Id: Ia7243190321a1416e577634bf5e010dd67d482e6 Reviewed-by: Richard Moe Gustavsen <richard.gustavsen@digia.com>
Diffstat (limited to 'src/plugins/platforms/ios/qiosapplicationdelegate.mm')
-rw-r--r--src/plugins/platforms/ios/qiosapplicationdelegate.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/platforms/ios/qiosapplicationdelegate.mm b/src/plugins/platforms/ios/qiosapplicationdelegate.mm
index e06d2b8840..def6d2ff04 100644
--- a/src/plugins/platforms/ios/qiosapplicationdelegate.mm
+++ b/src/plugins/platforms/ios/qiosapplicationdelegate.mm
@@ -64,7 +64,7 @@
self.window.backgroundColor = [UIColor cyanColor];
#endif
- [self.window makeKeyAndVisible];
+ self.window.hidden = NO;
return YES;
}