From fbf217b9903ee15c8459b0a20319806c6e92f940 Mon Sep 17 00:00:00 2001 From: Amir Raminfar Date: Mon, 24 May 2021 11:49:03 -0700 Subject: [PATCH] Tries to fixe #1245 by preventing default action --- assets/App.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/assets/App.vue b/assets/App.vue index e76b0cc8..3fd85d4c 100644 --- a/assets/App.vue +++ b/assets/App.vue @@ -85,6 +85,7 @@ export default { } this.menuWidth = this.settings.menuWidth; hotkeys("command+k, ctrl+k", (event, handler) => { + event.preventDefault(); this.showFuzzySearch(); }); },