Skip to content

Commit

Permalink
Only deselect patterns with the C shortcut
Browse files Browse the repository at this point in the history
Closes johnnesky#44.
  • Loading branch information
leovoel committed Aug 23, 2023
1 parent ac23031 commit 7c71c4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions editor/SongEditor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3472,9 +3472,9 @@ export class SongEditor {
this._copyInstrument();
} else {
this._doc.selection.copy();
this._doc.selection.resetBoxSelection();
this._doc.selection.selectionUpdated();
}
this._doc.selection.resetBoxSelection();
this._doc.selection.selectionUpdated();
event.preventDefault();
break;
case 13: // enter/return
Expand Down

0 comments on commit 7c71c4e

Please sign in to comment.