diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-09-13 13:16:56 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-13 13:16:56 -0400 |
commit | b180ebc3bc5182712fe33e5af3bea64b06204dcc (patch) | |
tree | 197faaf27ed093d552e2a73effde818fcf55d9ed /ext/bg/data/options-schema.json | |
parent | a12c4a1dd790475cfeb73e81988d67325ed9973e (diff) |
Settings upgrade and schema fixes (#823)
* Add missing defaults
* Always include touch input during upgrade
Diffstat (limited to 'ext/bg/data/options-schema.json')
-rw-r--r-- | ext/bg/data/options-schema.json | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/ext/bg/data/options-schema.json b/ext/bg/data/options-schema.json index 240305b5..0f310f6e 100644 --- a/ext/bg/data/options-schema.json +++ b/ext/bg/data/options-schema.json @@ -347,6 +347,12 @@ "mouse": true, "touch": false, "pen": false + }, + "options": { + "showAdvanced": false, + "scanOnPenHover": true, + "scanOnPenPress": true, + "scanOnPenRelease": false } }, { @@ -356,6 +362,12 @@ "mouse": false, "touch": true, "pen": true + }, + "options": { + "showAdvanced": false, + "scanOnPenHover": true, + "scanOnPenPress": true, + "scanOnPenRelease": false } } ], |