From 30ae830a4bc6933347697c2c6425a1f328d27de1 Mon Sep 17 00:00:00 2001 From: littleblack111 Date: Thu, 31 Oct 2024 10:45:33 +0800 Subject: [PATCH] fix: added longPress to SKeybind --- src/managers/KeybindManager.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/managers/KeybindManager.hpp b/src/managers/KeybindManager.hpp index 24a09836..f9ecd79c 100644 --- a/src/managers/KeybindManager.hpp +++ b/src/managers/KeybindManager.hpp @@ -28,6 +28,7 @@ struct SKeybind { std::string description = ""; bool release = false; bool repeat = false; + bool longPress = false; bool mouse = false; bool nonConsuming = false; bool transparent = false;