Skip to content

Commit de6e704

Browse files
committed
Auto capitalization based on editorInfo turned off while keyboard's capitalization setting is off
1 parent 448de75 commit de6e704

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/main/kotlin/com/simplemobiletools/keyboard/services/SimpleKeyboardIME.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ class SimpleKeyboardIME : InputMethodService(), MyKeyboardView.OnKeyboardActionL
195195
}
196196
}
197197

198-
if (code != MyKeyboard.KEYCODE_SHIFT) {
198+
if (code != MyKeyboard.KEYCODE_SHIFT && config.enableSentencesCapitalization) {
199199
updateShiftKeyState()
200200
}
201201
}

0 commit comments

Comments
 (0)