mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2026-02-16 02:20:53 +00:00
19 lines
429 B
Objective-C
19 lines
429 B
Objective-C
//
|
|
// 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
|