From 3c7cd43e38b0c37f2d2b076a9d05be76b4a9d65a Mon Sep 17 00:00:00 2001 From: Joel Collins Date: Mon, 6 Apr 2020 15:01:08 +0100 Subject: [PATCH] Switched to alt for letter keycombos (avoid conflict with capitalisation) --- src/App.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/App.vue b/src/App.vue index 0e94bbc1..57ff93e2 100644 --- a/src/App.vue +++ b/src/App.vue @@ -31,6 +31,7 @@ const keyCodes = { enter: 13, esc: 27, shift: 16, + alt: 18, t: 84 }; @@ -305,7 +306,7 @@ export default { }, letterKeyHandler: function(keyCodes) { - if (keyCodes.shift in this.keysDown && keyCodes.t in this.keysDown) { + if (keyCodes.alt in this.keysDown && keyCodes.t in this.keysDown) { this.$tours["guidedTour"].start(); } }