summaryrefslogtreecommitdiff
path: root/windows/autohotkey/Source/Methods-Other.ahk
diff options
context:
space:
mode:
authormartin_r <martin_r@b9310e46-f624-0410-8ea1-cfbb3a30dc96>2008-07-08 17:02:22 +0000
committermartin_r <martin_r@b9310e46-f624-0410-8ea1-cfbb3a30dc96>2008-07-08 17:02:22 +0000
commitc5acf91f2bf11c143d56bffe71f5cb1234bde1bc (patch)
tree337c6b5ad77c8f08cdf15249737b2ce50a05ac99 /windows/autohotkey/Source/Methods-Other.ahk
parenta5a18396a836413d326215c567318e23c19816ec (diff)
downloadneo-layout-c5acf91f2bf11c143d56bffe71f5cb1234bde1bc.tar.gz
neo-layout-c5acf91f2bf11c143d56bffe71f5cb1234bde1bc.tar.bz2
neo-layout-c5acf91f2bf11c143d56bffe71f5cb1234bde1bc.zip
Rechtschreibfehler korrigiert, Syntaxen korrigiert, Lang-s-Tastatur-Option hinzugefügt
git-svn-id: https://svn.neo-layout.org@624 b9310e46-f624-0410-8ea1-cfbb3a30dc96
Diffstat (limited to 'windows/autohotkey/Source/Methods-Other.ahk')
-rw-r--r--windows/autohotkey/Source/Methods-Other.ahk8
1 files changed, 4 insertions, 4 deletions
diff --git a/windows/autohotkey/Source/Methods-Other.ahk b/windows/autohotkey/Source/Methods-Other.ahk
index b3da1a6..16967d1 100644
--- a/windows/autohotkey/Source/Methods-Other.ahk
+++ b/windows/autohotkey/Source/Methods-Other.ahk
@@ -7,7 +7,7 @@
/*
Ebenen laut Referenz:
1. Ebene (kein Mod) 4. Ebene (Mod4)
-2. Ebene (Umschalt) 5. Ebene (Mod3+Umschalt)
+2. Ebene (Umschalt) 5. Ebene (Umschalt+Mod3)
3. Ebene (Mod3) 6. Ebene (Mod3+Mod4)
*/
@@ -32,7 +32,7 @@ EbeneAktualisieren()
if ( IsMod3Pressed() )
{ ; Umschalt UND Mod3
if ( IsMod4Pressed() )
- { ; Umschald UND Mod3 UND Mod4
+ { ; Umschalt UND Mod3 UND Mod4
; Ebene 8 impliziert Ebene 6
Ebene = 6
}
@@ -44,12 +44,12 @@ EbeneAktualisieren()
else
{ ; Umschalt NICHT Mod3
if ( IsMod4Pressed() )
- { ; Umschald UND Mod4 NICHT Mod3
+ { ; Umschalt UND Mod4 NICHT Mod3
; Ebene 7 impliziert Ebene 4
Ebene = 4
}
else
- { ; Umschald NICHT Mod3 NICHT Mod4
+ { ; Umschalt NICHT Mod3 NICHT Mod4
Ebene = 2
}
}