Skip to content

Commit

Permalink
Disable noteskin window until chart is loaded
Browse files Browse the repository at this point in the history
  • Loading branch information
tillvit committed Aug 14, 2024
1 parent 99870e0 commit 6135628
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/data/KeybindData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1420,7 +1420,7 @@ export const KEYBIND_DATA: { [key: string]: Keybind } = {
label: "Noteskins...",
bindLabel: "Open Noteskin Window",
combos: [{ mods: [Modifier.SHIFT], key: "N" }],
disabled: false,
disabled: app => !app.chartManager.chartView,
callback: app => app.windowManager.openWindow(new NoteskinWindow(app)),
},
}

0 comments on commit 6135628

Please sign in to comment.