diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-01-14 21:33:41 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-14 21:33:41 -0500 |
commit | 29b6c98e9fa31e2397986bf0750f4b696a0051d5 (patch) | |
tree | 9b2f2493fbaee404ab369a880da153f7dd425ad7 /ext/bg/js/settings/scan-inputs-simple-controller.js | |
parent | a97fbcde83dbafb147e936ff1ca720afab3bdc0a (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/settings/scan-inputs-simple-controller.js')
-rw-r--r-- | ext/bg/js/settings/scan-inputs-simple-controller.js | 2 |
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})) ]; |