Merge pull request #19287 from hrydgard/double-swipe

iOS: Enable "double-swipe" to switch apps
This commit is contained in:
Henrik Rydgård 2024-06-20 11:40:57 +02:00 committed by GitHub
commit da294a8c0b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 3 deletions

View File

@ -134,7 +134,8 @@ id<PPSSPPViewController> sharedViewController;
}
- (BOOL)prefersHomeIndicatorAutoHidden {
return YES;
// Would love to hide it, but it prevents the double-swipe protection from working.
return NO;
}
- (void)shareText:(NSString *)text {

View File

@ -481,7 +481,8 @@ void VulkanRenderLoop(IOSVulkanContext *graphicsContext, CAMetalLayer *metalLaye
}
- (BOOL)prefersHomeIndicatorAutoHidden {
return YES;
// Would love to hide it, but it prevents the double-swipe protection from working.
return NO;
}
- (void)shareText:(NSString *)text {
@ -531,7 +532,6 @@ extern float g_safeInsetBottom;
[self updateGesture];
}
- (void)updateGesture {
INFO_LOG(SYSTEM, "Updating swipe gesture.");