Skip to content

Commit 2656db4

Browse files
Merge pull request livecode#7276 from livecodepanos/bugfix-22602
[[ Bug 22602 ]] Ensure setting the keyboardType has an effect on iOS
2 parents 9e95103 + 8e1234b commit 2656db4

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

docs/notes/bugfix-22602.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Ensure setting the keyboardType has an effect on iOS even if the returnKeyType is not set

engine/src/mbliphoneapp.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1067,7 +1067,7 @@ - (void)activateKeyboard
10671067
}
10681068
else
10691069
{
1070-
[[[m_main_controller rootView] textView] setKeyboardType: m_keyboard_type];
1070+
[[[m_main_controller rootView] textView] setReturnKeyType: m_return_key_type];
10711071
}
10721072
}
10731073

0 commit comments

Comments
 (0)