From 9d10ce48492320608ae0f350d6d15618d919b176 Mon Sep 17 00:00:00 2001 From: Marek Lewandowski Date: Fri, 10 Apr 2020 00:13:08 +0200 Subject: [PATCH] Changed the hotkey to `ctrl+alt+k` as `shift+alt+k` is buggy due to https://github.com/ckeditor/ckeditor5/issues/6594. --- src/KbdEditing.js | 2 +- src/KbdUI.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/KbdEditing.js b/src/KbdEditing.js index f4e8fd83e..369b5be21 100644 --- a/src/KbdEditing.js +++ b/src/KbdEditing.js @@ -39,6 +39,6 @@ export default class KbdEditing extends Plugin { } ); editor.commands.add( KBD, new AttributeCommand( editor, KBD ) ); - editor.keystrokes.set( 'ALT+SHIFT+K', KBD ); + editor.keystrokes.set( 'CTRL+ALT+K', KBD ); } } diff --git a/src/KbdUI.js b/src/KbdUI.js index be6e55bf8..74d776a8a 100644 --- a/src/KbdUI.js +++ b/src/KbdUI.js @@ -26,7 +26,7 @@ export default class KbdUI extends Plugin { view.set( { label: t( 'Keyboard shortcut' ), icon: kbdIcon, - keystroke: 'ALT+SHIFT+K', + keystroke: 'CTRL+ALT+K', tooltip: true, isToggleable: true } );