We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d14d634 commit 893b496Copy full SHA for 893b496
app/src/main/kotlin/com/simplemobiletools/keyboard/helpers/Constants.kt
@@ -20,7 +20,7 @@ enum class ShiftState {
20
}
21
22
fun getShiftStateForText(context: Context, newText: String?): ShiftState {
23
- if (context.config.enableSentencesCapitalization.not()) {
+ if (!context.config.enableSentencesCapitalization) {
24
return OFF
25
26
@@ -36,7 +36,7 @@ enum class ShiftState {
36
37
38
fun getCapitalizationOnDelete(context: Context, text: CharSequence?): ShiftState {
39
40
41
42
0 commit comments