fix: fix ctrl+click not selecting notes
This commit is contained in:
@@ -119,9 +119,8 @@ export class NotesState {
|
|||||||
const note = this.application.findItem(uuid) as SNNote;
|
const note = this.application.findItem(uuid) as SNNote;
|
||||||
if (note) {
|
if (note) {
|
||||||
if (
|
if (
|
||||||
this.io.activeModifiers.has(
|
this.io.activeModifiers.has(KeyboardModifier.Meta) ||
|
||||||
KeyboardModifier.Meta || KeyboardModifier.Ctrl
|
this.io.activeModifiers.has(KeyboardModifier.Ctrl)
|
||||||
)
|
|
||||||
) {
|
) {
|
||||||
if (this.selectedNotes[note.uuid]) {
|
if (this.selectedNotes[note.uuid]) {
|
||||||
delete this.selectedNotes[note.uuid];
|
delete this.selectedNotes[note.uuid];
|
||||||
|
|||||||
Reference in New Issue
Block a user