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 893b496 commit 448de75Copy full SHA for 448de75
app/src/main/kotlin/com/simplemobiletools/keyboard/helpers/Config.kt
@@ -18,7 +18,7 @@ class Config(context: Context) : BaseConfig(context) {
18
set(showPopupOnKeypress) = prefs.edit().putBoolean(SHOW_POPUP_ON_KEYPRESS, showPopupOnKeypress).apply()
19
20
var enableSentencesCapitalization: Boolean
21
- get() = prefs.getBoolean(SENTENCES_CAPITALIZATION, false)
+ get() = prefs.getBoolean(SENTENCES_CAPITALIZATION, true)
22
set(enableCapitalization) = prefs.edit().putBoolean(SENTENCES_CAPITALIZATION, enableCapitalization).apply()
23
24
var showKeyBorders: Boolean
0 commit comments