Fix undo menu appearing when opening the keyboard on iOS 16

This commit is contained in:
Cameron Gutman
2022-12-02 22:54:08 -06:00
parent 02e088ddb2
commit 365f61b393
4 changed files with 47 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
//
// KeyboardInputField.m
// Moonlight
//
// Created by Cameron Gutman on 12/2/22.
// Copyright © 2022 Moonlight Game Streaming Project. All rights reserved.
//
#import "KeyboardInputField.h"
@implementation KeyboardInputField
- (UIEditingInteractionConfiguration) editingInteractionConfiguration {
// Suppress the Undo menu that appears with a 3 finger tap
return UIEditingInteractionConfigurationNone;
}
@end