diff --git a/src/renderer/views/Download.vue b/src/renderer/views/Download.vue index 8cd6fcf7..09a02be8 100644 --- a/src/renderer/views/Download.vue +++ b/src/renderer/views/Download.vue @@ -134,16 +134,16 @@ export default { window.eventHub.$on('key_shift_up', this.handle_key_shift_up) window.eventHub.$on('key_mod_down', this.handle_key_mod_down) window.eventHub.$on('key_mod_up', this.handle_key_mod_up) - window.eventHub.$on('key_mod+a_down', this.handle_mod_a_down) - window.eventHub.$on('key_mod+a_up', this.handle_mod_a_up) + window.eventHub.$on('key_mod+a_down', this.handle_key_mod_a_down) + window.eventHub.$on('key_mod+a_up', this.handle_key_mod_a_up) }, unlistenEvent() { window.eventHub.$off('key_shift_down', this.handle_key_shift_down) window.eventHub.$off('key_shift_up', this.handle_key_shift_up) window.eventHub.$off('key_mod_down', this.handle_key_mod_down) window.eventHub.$off('key_mod_up', this.handle_key_mod_up) - window.eventHub.$off('key_mod+a_down', this.handle_mod_a_down) - window.eventHub.$off('key_mod+a_up', this.handle_mod_a_up) + window.eventHub.$off('key_mod+a_down', this.handle_key_mod_a_down) + window.eventHub.$off('key_mod+a_up', this.handle_key_mod_a_up) }, handle_key_shift_down() { if (!this.keyEvent.isShiftDown) this.keyEvent.isShiftDown = true diff --git a/src/renderer/views/List.vue b/src/renderer/views/List.vue index a55ab001..13c91722 100644 --- a/src/renderer/views/List.vue +++ b/src/renderer/views/List.vue @@ -193,16 +193,16 @@ export default { window.eventHub.$on('key_shift_up', this.handle_key_shift_up) window.eventHub.$on('key_mod_down', this.handle_key_mod_down) window.eventHub.$on('key_mod_up', this.handle_key_mod_up) - window.eventHub.$on('key_mod+a_down', this.handle_mod_a_down) - window.eventHub.$on('key_mod+a_up', this.handle_mod_a_up) + window.eventHub.$on('key_mod+a_down', this.handle_key_mod_a_down) + window.eventHub.$on('key_mod+a_up', this.handle_key_mod_a_up) }, unlistenEvent() { window.eventHub.$off('key_shift_down', this.handle_key_shift_down) window.eventHub.$off('key_shift_up', this.handle_key_shift_up) window.eventHub.$off('key_mod_down', this.handle_key_mod_down) window.eventHub.$off('key_mod_up', this.handle_key_mod_up) - window.eventHub.$off('key_mod+a_down', this.handle_mod_a_down) - window.eventHub.$off('key_mod+a_up', this.handle_mod_a_up) + window.eventHub.$off('key_mod+a_down', this.handle_key_mod_a_down) + window.eventHub.$off('key_mod+a_up', this.handle_key_mod_a_up) }, handle_key_shift_down() { if (!this.keyEvent.isShiftDown) this.keyEvent.isShiftDown = true diff --git a/src/renderer/views/Search.vue b/src/renderer/views/Search.vue index 0af3f6c4..76d07977 100644 --- a/src/renderer/views/Search.vue +++ b/src/renderer/views/Search.vue @@ -171,16 +171,16 @@ export default { window.eventHub.$on('key_shift_up', this.handle_key_shift_up) window.eventHub.$on('key_mod_down', this.handle_key_mod_down) window.eventHub.$on('key_mod_up', this.handle_key_mod_up) - window.eventHub.$on('key_mod+a_down', this.handle_mod_a_down) - window.eventHub.$on('key_mod+a_up', this.handle_mod_a_up) + window.eventHub.$on('key_mod+a_down', this.handle_key_mod_a_down) + window.eventHub.$on('key_mod+a_up', this.handle_key_mod_a_up) }, unlistenEvent() { window.eventHub.$off('key_shift_down', this.handle_key_shift_down) window.eventHub.$off('key_shift_up', this.handle_key_shift_up) window.eventHub.$off('key_mod_down', this.handle_key_mod_down) window.eventHub.$off('key_mod_up', this.handle_key_mod_up) - window.eventHub.$off('key_mod+a_down', this.handle_mod_a_down) - window.eventHub.$off('key_mod+a_up', this.handle_mod_a_up) + window.eventHub.$off('key_mod+a_down', this.handle_key_mod_a_down) + window.eventHub.$off('key_mod+a_up', this.handle_key_mod_a_up) }, handle_key_shift_down() { if (!this.keyEvent.isShiftDown) this.keyEvent.isShiftDown = true