Skip to content

Commit 3cae8b0

Browse files
committed
increasing the default editor font size a bit
1 parent 0e2ca89 commit 3cae8b0

File tree

1 file changed

+1
-1
lines changed
  • app/src/main/kotlin/com/simplemobiletools/filemanager/pro/helpers

1 file changed

+1
-1
lines changed

app/src/main/kotlin/com/simplemobiletools/filemanager/pro/helpers/Config.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,6 @@ class Config(context: Context) : BaseConfig(context) {
7171
set(enableRootAccess) = prefs.edit().putBoolean(ENABLE_ROOT_ACCESS, enableRootAccess).apply()
7272

7373
var editorTextZoom: Float
74-
get() = prefs.getFloat(EDITOR_TEXT_ZOOM, 0f)
74+
get() = prefs.getFloat(EDITOR_TEXT_ZOOM, 1.2f)
7575
set(editorTextZoom) = prefs.edit().putFloat(EDITOR_TEXT_ZOOM, editorTextZoom).apply()
7676
}

0 commit comments

Comments
 (0)