From 1e92b55ffe4ecab5ae9187f433ae11273801b346 Mon Sep 17 00:00:00 2001 From: Saplonily Date: Sat, 3 Feb 2024 15:31:57 +0800 Subject: [PATCH] Fix Ctrl + Plus not working --- src/structs/hotkey.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/structs/hotkey.lua b/src/structs/hotkey.lua index fbaedacd..32053078 100644 --- a/src/structs/hotkey.lua +++ b/src/structs/hotkey.lua @@ -1,7 +1,7 @@ local keyboardHelper = require("utils.keyboard") local specialKeyAliases = { - plus = "+", + plus = "=", minus = "-", } @@ -127,4 +127,4 @@ function hotkeyStruct.createHotkey(activator, callback) return setmetatable(hotkey, hotkeyMt) end -return hotkeyStruct \ No newline at end of file +return hotkeyStruct