Skip to content

Commit

Permalink
clear the whole list if shift isn't down, duh
Browse files Browse the repository at this point in the history
  • Loading branch information
dmchurch committed Feb 28, 2024
1 parent cc2e7b9 commit 8b416f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion driver.js
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ function loadList() {
}

function clearList() {
actions.clearActions(a => (a.disabled || a.loops === 0));
actions.clearActions(shiftDown ? (a => (a.disabled || a.loops === 0)) : null);
view.updateNextActions();
}

Expand Down

0 comments on commit 8b416f7

Please sign in to comment.