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 0e2ca89 commit 3cae8b0Copy full SHA for 3cae8b0
app/src/main/kotlin/com/simplemobiletools/filemanager/pro/helpers/Config.kt
@@ -71,6 +71,6 @@ class Config(context: Context) : BaseConfig(context) {
71
set(enableRootAccess) = prefs.edit().putBoolean(ENABLE_ROOT_ACCESS, enableRootAccess).apply()
72
73
var editorTextZoom: Float
74
- get() = prefs.getFloat(EDITOR_TEXT_ZOOM, 0f)
+ get() = prefs.getFloat(EDITOR_TEXT_ZOOM, 1.2f)
75
set(editorTextZoom) = prefs.edit().putFloat(EDITOR_TEXT_ZOOM, editorTextZoom).apply()
76
}
0 commit comments