From 20f0f35ab41df06e40b6e159c4e58865a2b0b97f Mon Sep 17 00:00:00 2001 From: martin_r Date: Wed, 27 Aug 2008 17:13:08 +0000 Subject: Ãœberflüssigen Code entfernt, Code gestrafft MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: https://svn.neo-layout.org@812 b9310e46-f624-0410-8ea1-cfbb3a30dc96 --- windows/autohotkey/Source/Methods-Layers.ahk | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (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 fe93848..81fd081 100644 --- a/windows/autohotkey/Source/Methods-Layers.ahk +++ b/windows/autohotkey/Source/Methods-Layers.ahk @@ -11,7 +11,7 @@ isMod2Locked = 0 VKA1SC136 & VKA0SC02A:: ; RShift, dann LShift VKA0SC02A & VKA1SC136:: ; LShift, dann RShift - if (GetKeyState("VKA1SC136", "P") and GetKeyState("VKA0SC02A", "P")) { + if GetKeyState("VKA1SC136", "P") and GetKeyState("VKA0SC02A", "P") { if isMod2Locked { isMod2Locked = 0 KeyboardLED(4,"off") @@ -23,6 +23,7 @@ VKA0SC02A & VKA1SC136:: ; LShift, dann RShift return ;Mod3-Tasten (Wichtig, sie werden sonst nicht verarbeitet!) +;Auf Mod3+Mod3 liegt zusätzlich zu Mod3+Tab Compose *VKBFSC02B:: ; # *VK14SC03A:: ; CapsLock if (GetKeyState("VKBFSC02B", "P") and GetKeyState("VK14SC03A", "P")) { @@ -40,7 +41,7 @@ return IsMod4Locked := 0 *VKA5SC138:: *VKE2SC056:: - if (GetKeyState("VKA5SC138", "P") and GetKeyState("VKE2SC056", "P")) { + if GetKeyState("VKA5SC138", "P") and GetKeyState("VKE2SC056", "P") { if IsMod4Locked { if zeigeLockBox MsgBox Mod4-Feststellung aufgebehoben! -- cgit v1.2.3