From c1b59763941a74367b81e9b8329319f1ede72317 Mon Sep 17 00:00:00 2001 From: toasted-nutbread Date: Sat, 26 Sep 2020 17:51:52 -0400 Subject: Scanning mouse button fixes (#866) * Move mouse0 blocking during mousemove into options * Update primary button detection --- ext/bg/data/options-schema.json | 2 +- ext/bg/js/options.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'ext/bg') diff --git a/ext/bg/data/options-schema.json b/ext/bg/data/options-schema.json index 71d5e7db..2e324984 100644 --- a/ext/bg/data/options-schema.json +++ b/ext/bg/data/options-schema.json @@ -343,7 +343,7 @@ "default": [ { "include": "shift", - "exclude": "", + "exclude": "mouse0", "types": { "mouse": true, "touch": false, diff --git a/ext/bg/js/options.js b/ext/bg/js/options.js index 5b61b870..f9571ec2 100644 --- a/ext/bg/js/options.js +++ b/ext/bg/js/options.js @@ -550,7 +550,7 @@ class OptionsUtil { } scanningInputs.push({ include: modifierInput, - exclude: '', + exclude: 'mouse0', types: {mouse: true, touch: false, pen: false}, options: createInputDefaultOptions() }); -- cgit v1.2.3