From e50492323ced30a26ac228c6348e0a2180df9083 Mon Sep 17 00:00:00 2001 From: shenlebantongying Date: Thu, 14 Nov 2024 03:49:46 -0500 Subject: [PATCH] add Qt::Key_Meta -> VK_LWIN --- src/hotkeywrapper.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/hotkeywrapper.cc b/src/hotkeywrapper.cc index 32f13b6d..33daf1fb 100644 --- a/src/hotkeywrapper.cc +++ b/src/hotkeywrapper.cc @@ -480,6 +480,8 @@ quint32 HotkeyWrapper::nativeKey( int key ) return 0x39; case Qt::Key_Underscore: return VK_OEM_MINUS; + case Qt::Key_Meta: + return VK_LWIN; default:; }