diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-03-28 14:04:20 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-28 14:04:20 -0400 |
commit | b4d6a5d3b4b83c7c3c7f835f775d3207a4b97067 (patch) | |
tree | 6039a7c190db6e4b8a4faeb5f8e74b5027bb82c4 /ext/settings.html | |
parent | 98994d0b6529e665863bc9f6125eb3e116e0f9d5 (diff) |
Toggle option hotkey (#1571)
* Set up toggleOption hotkey action settings
* Update styles
* Disable spell check and autocomplete
* Add OptionToggleHotkeyHandler
* Improve auto-close behaviour
Diffstat (limited to 'ext/settings.html')
-rw-r--r-- | ext/settings.html | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/ext/settings.html b/ext/settings.html index e9f27751..3de183db 100644 --- a/ext/settings.html +++ b/ext/settings.html @@ -3172,6 +3172,7 @@ <option value="playAudioFromSource">Play audio from source</option> <option value="copyHostSelection">Copy host window selection</option> <option value="scanSelectedText">Scan selected text</option> + <option value="toggleOption">Toggle option</option> </select> <div class="hotkey-list-item-action-argument-container"></div> </div> @@ -3221,9 +3222,14 @@ <input type="number" step="1" min="1" class="hotkey-argument-input"> </div></template> +<template id="hotkey-argument-setting-path-template"><div class="flex-row-nowrap"> + <span class="hotkey-argument-label">Path:</span> + <input type="text" class="hotkey-argument-input horizontal-flex-fill" spellcheck="false" autocomplete="off"> +</div></template> + <template id="hotkey-argument-audio-source-template"><div class="flex-row-nowrap"> <span class="hotkey-argument-label">Source:</span> - <select class="audio-source-select hotkey-argument-input"> + <select class="audio-source-select hotkey-argument-input horizontal-flex-fill"> <option value="jpod101">JapanesePod101</option> <option value="jpod101-alternate">JapanesePod101 (Alternate)</option> <option value="jisho">Jisho.org</option> |