show brush size tool by default

This commit is contained in:
tibbi 2018-05-15 09:59:16 +02:00
parent 2ad8b79d80
commit ccb6ec2465

View File

@ -10,7 +10,7 @@ class Config(context: Context) : BaseConfig(context) {
}
var showBrushSize: Boolean
get() = prefs.getBoolean(SHOW_BRUSH_SIZE, false)
get() = prefs.getBoolean(SHOW_BRUSH_SIZE, true)
set(showBrushSize) = prefs.edit().putBoolean(SHOW_BRUSH_SIZE, showBrushSize).apply()
var brushColor: Int