fixing a param name

This commit is contained in:
Tibor Kaputa 2022-11-06 10:44:49 +01:00 committed by GitHub
parent 83677681e9
commit 3a1b749a58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -89,5 +89,5 @@ class Config(context: Context) : BaseConfig(context) {
var keyboardHeight: Int
get() = prefs.getInt(SOFT_KEYBOARD_HEIGHT, 600)
set(value) = prefs.edit().putInt(SOFT_KEYBOARD_HEIGHT, value).apply()
set(keyboardHeight) = prefs.edit().putInt(SOFT_KEYBOARD_HEIGHT, keyboardHeight).apply()
}