From d672bb46432772cbcb981d4091a0828e2d1b2364 Mon Sep 17 00:00:00 2001 From: MeiMei <30769358+mei23@users.noreply.github.com> Date: Mon, 21 Oct 2019 00:46:14 +0900 Subject: Escでメディアビューワが閉じれるように (#5494) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * EscやBackspaceでメディアビューワが閉じれるように * Backspaceでは閉じないように --- src/client/app/common/scripts/note-mixin.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/client/app/common/scripts/note-mixin.ts') diff --git a/src/client/app/common/scripts/note-mixin.ts b/src/client/app/common/scripts/note-mixin.ts index 54e90714e7..43fb4fd51e 100644 --- a/src/client/app/common/scripts/note-mixin.ts +++ b/src/client/app/common/scripts/note-mixin.ts @@ -43,7 +43,7 @@ export default (opts: Opts = {}) => ({ 'ctrl+q': this.renoteDirectly, 'up|k|shift+tab': this.focusBefore, 'down|j|tab': this.focusAfter, - 'esc': this.blur, + //'esc': this.blur, 'm|o': () => this.menu(true), 's': this.toggleShowContent, '1': () => this.reactDirectly('like'), -- cgit v1.2.3-freya