diff options
Diffstat (limited to 'windows/autohotkey/Source')
-rw-r--r-- | windows/autohotkey/Source/Global-Part.ahk | 2 | ||||
-rw-r--r-- | windows/autohotkey/Source/Methods-Other.ahk | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/windows/autohotkey/Source/Global-Part.ahk b/windows/autohotkey/Source/Global-Part.ahk index 41db3d8..03ef728 100644 --- a/windows/autohotkey/Source/Global-Part.ahk +++ b/windows/autohotkey/Source/Global-Part.ahk @@ -80,7 +80,7 @@ IniRead,DeadCompose,%ini%,Global,DeadCompose,1 IniRead,striktesMod2Lock,%ini%,Global,striktesMod2Lock,0
/***********************
-* Recourcen-Verwaltung *
+* Resourcen-Verwaltung *
************************
*/
if (FileExist("ResourceFolder") <> false) {
diff --git a/windows/autohotkey/Source/Methods-Other.ahk b/windows/autohotkey/Source/Methods-Other.ahk index 1f7ad1d..ab1d86b 100644 --- a/windows/autohotkey/Source/Methods-Other.ahk +++ b/windows/autohotkey/Source/Methods-Other.ahk @@ -86,7 +86,7 @@ CheckCompUni(d,val) { OutputChar(val1,val2) {
global
- if !(CheckComp(val2) and DeadCompose)
+ if (!CheckComp(val2))
send % "{blind}" . val1
}
@@ -98,7 +98,7 @@ OutputChar12(val1,val2,val3,val4) { if (Ebene = 1)
d := val3
else d := val4
- if !(CheckComp(d) and DeadCompose)
+ if (!CheckComp(d))
if GetKeyState("Shift","P") and isMod2Locked
send % "{blind}{Shift Up}" . c . "{Shift Down}"
else send % "{blind}" . c
|