From e9b6cb3ac804526ab840c28fe4e30752f677d5fa Mon Sep 17 00:00:00 2001 From: Eduard Urbach Date: Tue, 17 Oct 2017 18:16:44 +0200 Subject: [PATCH] Ctrl + comma to open settings --- scripts/AnimeNotifier.ts | 9 +++++++++ 1 file changed, 9 insertions(+) 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