mirror of
https://github.com/zen-browser/components.git
synced 2025-07-10 01:05:29 +02:00
Refactor ZenKeyboardShortcuts to fix control key behavior
This commit is contained in:
parent
a8648e284b
commit
4fcc367d75
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue