summaryrefslogtreecommitdiff
path: root/ext/bg/js
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2021-01-14 21:33:41 -0500
committerGitHub <noreply@github.com>2021-01-14 21:33:41 -0500
commit29b6c98e9fa31e2397986bf0750f4b696a0051d5 (patch)
tree9b2f2493fbaee404ab369a880da153f7dd425ad7 /ext/bg/js
parenta97fbcde83dbafb147e936ff1ca720afab3bdc0a (diff)
Clarify some settings descriptions (#1238)
* Clarify the meaning of the 'None' option; rename to 'No key' * Clarify Auto-hide search popup * Clarify Scan delay * Move Support inputs for devices with touch screens; make advanced
Diffstat (limited to 'ext/bg/js')
-rw-r--r--ext/bg/js/settings/scan-inputs-simple-controller.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/bg/js/settings/scan-inputs-simple-controller.js b/ext/bg/js/settings/scan-inputs-simple-controller.js
index b6e56189..9e7eb5fc 100644
--- a/ext/bg/js/settings/scan-inputs-simple-controller.js
+++ b/ext/bg/js/settings/scan-inputs-simple-controller.js
@@ -106,7 +106,7 @@ class ScanInputsSimpleController {
_populateSelect(select, hasOther) {
const modifierKeys = [
- {value: 'none', name: 'None'},
+ {value: 'none', name: 'No key'},
...DocumentUtil.getModifierKeys(this._os).map(([value, name]) => ({value, name}))
];