diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-08-04 19:11:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-04 19:11:40 +0200 |
commit | e9f8b2d1908f3dcfda945d20bb6cb86654d80277 (patch) | |
tree | a61f35ca2841cf224194b93a2a57da43c42a7be6 /platform/ios/keyboard_input_view.h | |
parent | bed2482ce20fb9efdf4caed73df8032c5c6dea04 (diff) | |
parent | 103c0fa6e6ea85779e5de965b5b353833926732f (diff) |
Merge pull request #58536 from winterpixelgames/feature/virtual-keyboard-types
Add support for multiple virtual keyboard types
Diffstat (limited to 'platform/ios/keyboard_input_view.h')
-rw-r--r-- | platform/ios/keyboard_input_view.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/ios/keyboard_input_view.h b/platform/ios/keyboard_input_view.h index 33fa5d571a..fc34e6a11b 100644 --- a/platform/ios/keyboard_input_view.h +++ b/platform/ios/keyboard_input_view.h @@ -32,6 +32,6 @@ @interface GodotKeyboardInputView : UITextView -- (BOOL)becomeFirstResponderWithString:(NSString *)existingString multiline:(BOOL)flag cursorStart:(NSInteger)start cursorEnd:(NSInteger)end; +- (BOOL)becomeFirstResponderWithString:(NSString *)existingString cursorStart:(NSInteger)start cursorEnd:(NSInteger)end; @end |