Fix Control and Command Backward on mac os

main
Chris Rizzitello 2023-10-10 13:02:16 -04:00 committed by jkennedyvz
parent e1b2e5d5a0
commit 3e1ba34ca5
1 changed files with 2 additions and 2 deletions

View File

@ -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)