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() {
let str = '';
if (this.#control) {
if (this.#control && !this.#accel) {
str += 'Ctrl+';
}
if (this.#alt) {