From bfa3d69173bba606333e10cf66288b8b258b02ad Mon Sep 17 00:00:00 2001 From: martin_r Date: Mon, 18 Aug 2008 23:59:03 +0000 Subject: CapsLock+Shift-Fehler ausgebessert git-svn-id: https://svn.neo-layout.org@778 b9310e46-f624-0410-8ea1-cfbb3a30dc96 --- windows/autohotkey/Source/Methods-Layers.ahk | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'windows/autohotkey/Source/Methods-Layers.ahk') diff --git a/windows/autohotkey/Source/Methods-Layers.ahk b/windows/autohotkey/Source/Methods-Layers.ahk index b13edfc..2d4e6e2 100644 --- a/windows/autohotkey/Source/Methods-Layers.ahk +++ b/windows/autohotkey/Source/Methods-Layers.ahk @@ -110,7 +110,16 @@ EbeneAktualisieren() IsShiftPressed() { global - return ((GetKeyState("Shift","P")) = !(isMod2Locked)) ;xor + if GetKeyState("Shift","P") + if isMod2Locked + return 0 + else + return 1 + else + if isMod2Locked + return 1 + else + return 0 } IsMod3Pressed() -- cgit v1.2.3