mirror of
https://github.com/zen-browser/components.git
synced 2025-07-07 17:25:31 +02:00
Fixed display issues for shortcuts in settings (https://github.com/zen-browser/desktop/issues/376)
This commit is contained in:
parent
d8d3f47178
commit
556d8a8fc7
1 changed files with 1 additions and 1 deletions
|
@ -340,7 +340,7 @@ var gZenKeyboardShortcuts = {
|
|||
shortCutToString(shortcut) {
|
||||
let str = "";
|
||||
if (shortcut.ctrl) {
|
||||
str += "Ctrl+";
|
||||
str += AppConstants.platform == "macosx" ? "Cmd+" : "Ctrl+";
|
||||
}
|
||||
if (shortcut.alt) {
|
||||
str += "Alt+";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue