diff options
Diffstat (limited to 'ext/bg/js')
-rw-r--r-- | ext/bg/js/options.js | 4 | ||||
-rw-r--r-- | ext/bg/js/settings/scan-inputs-controller.js | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/ext/bg/js/options.js b/ext/bg/js/options.js index f83dad6d..19a5cc2c 100644 --- a/ext/bg/js/options.js +++ b/ext/bg/js/options.js @@ -522,12 +522,12 @@ class OptionsUtil { } const createInputDefaultOptions = () => ({ showAdvanced: false, + searchTerms: true, + searchKanji: true, scanOnTouchMove: true, scanOnPenHover: true, scanOnPenPress: true, scanOnPenRelease: false, - searchTerms: true, - searchKanji: true, preventTouchScrolling: true }); for (const {options: profileOptions} of options.profiles) { diff --git a/ext/bg/js/settings/scan-inputs-controller.js b/ext/bg/js/settings/scan-inputs-controller.js index 5da0d5e1..ec2758cb 100644 --- a/ext/bg/js/settings/scan-inputs-controller.js +++ b/ext/bg/js/settings/scan-inputs-controller.js @@ -99,12 +99,12 @@ class ScanInputsController { types: {mouse: true, touch: false, pen: false}, options: { showAdvanced: false, + searchTerms: true, + searchKanji: true, scanOnTouchMove: true, scanOnPenHover: true, scanOnPenPress: true, scanOnPenRelease: false, - searchTerms: true, - searchKanji: true, preventTouchScrolling: true } }] |