sys: Added select region command

This commit is contained in:
WerWolv
2022-08-08 12:47:49 +02:00
parent 519a9edb60
commit 2c740cab06
9 changed files with 105 additions and 7 deletions

View File

@@ -181,8 +181,8 @@ namespace hex {
static constexpr auto CTRL = Key(static_cast<Keys>(0x1000'0000));
static constexpr auto ALT = Key(static_cast<Keys>(0x2000'0000));
static constexpr auto SHIFT = Key(static_cast<Keys>(0x3000'0000));
static constexpr auto SUPER = Key(static_cast<Keys>(0x4000'0000));
static constexpr auto SHIFT = Key(static_cast<Keys>(0x4000'0000));
static constexpr auto SUPER = Key(static_cast<Keys>(0x8000'0000));
class ShortcutManager {
public: