hide menu view controller when resigning active

// FREEBIE
pull/1/head
Michael Kirk 6 years ago
parent dde2fd6f33
commit bdc8181cbc

@ -164,6 +164,11 @@ const UIWindowLevel UIWindowLevel_MessageActions(void)
name:UIApplicationDidChangeStatusBarFrameNotification
object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(applicationWillResignActive:)
name:OWSApplicationWillResignActiveNotification
object:nil];
[self ensureWindowState];
}
@ -178,6 +183,11 @@ const UIWindowLevel UIWindowLevel_MessageActions(void)
self.returnToCallWindow.frame = newFrame;
}
- (void)applicationWillResignActive:(NSNotification *)notification
{
[self hideMenuActionsWindow];
}
- (UIWindow *)createReturnToCallWindow:(UIWindow *)rootWindow
{
OWSAssertIsOnMainThread();

Loading…
Cancel
Save