Skip to content

Commit

Permalink
updated tip for alt+number keys
Browse files Browse the repository at this point in the history
  • Loading branch information
RealRaven2000 committed Apr 15, 2024
1 parent f3886da commit 769704b
Showing 2 changed files with 11 additions and 4 deletions.
8 changes: 4 additions & 4 deletions html/options.html
Original file line number Diff line number Diff line change
@@ -65,14 +65,14 @@
<fieldset class="hbox multiCol">
<legend>__MSG_qf.label.keyboard__</legend>
<div class="vbox">
<label class="keynote">__MSG_keyshortcuts.news__</label>
<label class="to_review"><input type="checkbox"
<label class="keynote">__MSG_keyshortcuts.news__ <button class="helpLink" id="tbkeys"></button></label>
<label><input type="checkbox"
data-pref-name="extensions.quickfolders.useKeyboardShortcuts"
preference="qfpg-UseKeyboardShortcuts">__MSG_qf.checkbox.usekeyboardshortcuts__</label>
<label class="to_review"><input type="checkbox" class="indent"
<label><input type="checkbox" class="indent"
data-pref-name="extensions.quickfolders.showShortcutNumber"
preference="qfpg-ShowShortcutNumber">__MSG_qf.checkbox.showshortcutnumber__</label>
<label class="to_review"><input type="checkbox" class="indent"
<label><input type="checkbox" class="indent"
data-pref-name="extensions.quickfolders.useKeyboardShortcutCTRL"
preference="qfpg-UseKeyboardShortcutCTRL" instantApply="true">__MSG_qf.checkbox.usekeyboardshortcutsCTRL__</label>
</div>
7 changes: 7 additions & 0 deletions html/options.js
Original file line number Diff line number Diff line change
@@ -797,8 +797,15 @@ function initButtons() {
document.getElementById("L0").addEventListener("click", (event) => {
QuickFolders.Util.openLinkInTab("https://quickfolders.org/");
window.close();
});

document.getElementById("tbkeys").addEventListener("click", (event) => {
QuickFolders.Util.openLinkInTab("https://github.com/RealRaven2000/QuickFolders/issues/387#issuecomment-2029756995");
window.close();
});




}

0 comments on commit 769704b

Please sign in to comment.