Refactor ZenKeyboardShortcuts to fix control key behavior

This commit is contained in:
mauro-balades 2024-09-24 21:04:40 +02:00
parent a8648e284b
commit 4fcc367d75

View file

@ -163,7 +163,7 @@ class KeyShortcutModifiers {
toUserString() { toUserString() {
let str = ''; let str = '';
if (this.#control) { if (this.#control && !this.#accel) {
str += 'Ctrl+'; str += 'Ctrl+';
} }
if (this.#alt) { if (this.#alt) {