disable canvas zooming by default
This commit is contained in:
parent
27aab522a5
commit
9d668b5e5a
1 changed files with 1 additions and 1 deletions
|
@ -31,6 +31,6 @@ class Config(context: Context) : BaseConfig(context) {
|
|||
set(lastSaveFolder) = prefs.edit().putString(LAST_SAVE_FOLDER, lastSaveFolder).apply()
|
||||
|
||||
var allowZoomingCanvas: Boolean
|
||||
get() = prefs.getBoolean(ALLOW_ZOOMING_CANVAS, true)
|
||||
get() = prefs.getBoolean(ALLOW_ZOOMING_CANVAS, false)
|
||||
set(allowZoomingCanvas) = prefs.edit().putBoolean(ALLOW_ZOOMING_CANVAS, allowZoomingCanvas).apply()
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue