diff --git a/scripts/AnimeNotifier.ts b/scripts/AnimeNotifier.ts index 23605e29..bbdce8fe 100644 --- a/scripts/AnimeNotifier.ts +++ b/scripts/AnimeNotifier.ts @@ -816,5 +816,14 @@ export class AnimeNotifier { e.stopPropagation() return } + + // Ctrl + , = Settings + if(e.ctrlKey && e.keyCode == 188) { + this.app.load("/settings") + + e.preventDefault() + e.stopPropagation() + return + } } } \ No newline at end of file