Skip to content

Commit

Permalink
Fix Control and Command Backward on mac os
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Rizzitello authored and jkennedyvz committed Oct 12, 2023
1 parent e1b2e5d commit 3e1ba34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/helpers/hotkeys/hotkeymap.h
Original file line number Diff line number Diff line change
Expand Up @@ -266,9 +266,9 @@ static QMap<uint32_t, uint32_t> KEY_MAP = {
static QMap<uint32_t, uint32_t> MOD_MAP = {
{Qt::Key_Shift, shiftKey},
{Qt::Key_Alt, optionKey},
{Qt::Key_Control, controlKey},
{Qt::Key_Meta, controlKey},
{Qt::Key_Option, optionKey},
{Qt::Key_Meta, cmdKey},
{Qt::Key_Control, cmdKey},
};

inline UKeyData QtKeyToMac(const UKeySequence &keySeq)
Expand Down

0 comments on commit 3e1ba34

Please sign in to comment.