Fix menu button recognizer not always working after returning from settings

This commit is contained in:
Cameron Gutman
2019-09-24 19:08:22 -07:00
parent d98aba66a8
commit 4e5264d5e9
@@ -248,7 +248,7 @@ static NSMutableSet* hostList;
#if TARGET_OS_TV #if TARGET_OS_TV
// Remove the menu button intercept to allow the app to exit // Remove the menu button intercept to allow the app to exit
// when at the host selection view. // when at the host selection view.
[self.view removeGestureRecognizer:_menuRecognizer]; [self.navigationController.view removeGestureRecognizer:_menuRecognizer];
#endif #endif
[_appManager stopRetrieving]; [_appManager stopRetrieving];
@@ -296,7 +296,7 @@ static NSMutableSet* hostList;
#if TARGET_OS_TV #if TARGET_OS_TV
// Intercept the menu key to go back to the host page // Intercept the menu key to go back to the host page
[self.view addGestureRecognizer:_menuRecognizer]; [self.navigationController.view addGestureRecognizer:_menuRecognizer];
#endif #endif
// If we are online, paired, and have a cached app list, skip straight // If we are online, paired, and have a cached app list, skip straight