From 3cae8b0fe8988f0f9fcc8c9ac85e7f91889f4be4 Mon Sep 17 00:00:00 2001 From: tibbi Date: Thu, 26 Mar 2020 18:08:03 +0100 Subject: [PATCH] increasing the default editor font size a bit --- .../com/simplemobiletools/filemanager/pro/helpers/Config.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/kotlin/com/simplemobiletools/filemanager/pro/helpers/Config.kt b/app/src/main/kotlin/com/simplemobiletools/filemanager/pro/helpers/Config.kt index 3572c79f..a52f5899 100644 --- a/app/src/main/kotlin/com/simplemobiletools/filemanager/pro/helpers/Config.kt +++ b/app/src/main/kotlin/com/simplemobiletools/filemanager/pro/helpers/Config.kt @@ -71,6 +71,6 @@ class Config(context: Context) : BaseConfig(context) { set(enableRootAccess) = prefs.edit().putBoolean(ENABLE_ROOT_ACCESS, enableRootAccess).apply() var editorTextZoom: Float - get() = prefs.getFloat(EDITOR_TEXT_ZOOM, 0f) + get() = prefs.getFloat(EDITOR_TEXT_ZOOM, 1.2f) set(editorTextZoom) = prefs.edit().putFloat(EDITOR_TEXT_ZOOM, editorTextZoom).apply() }