summaryrefslogtreecommitdiffstats
path: root/windows
diff options
context:
space:
mode:
authordennis <dennis@b9310e46-f624-0410-8ea1-cfbb3a30dc96>2008-07-23 23:55:10 +0000
committerdennis <dennis@b9310e46-f624-0410-8ea1-cfbb3a30dc96>2008-07-23 23:55:10 +0000
commite464561263c8460cfb928e01409bb664fbf85a62 (patch)
tree47e49d9a8e55bfa42bb60d1a5cc1ff287b240830 /windows
parentb3d67677d7f247608e8b46780e3b0322caccbd66 (diff)
Die SendUnicodeChar-Methode um den GDK-Workarround von Matthias Wächter ergänzt.
git-svn-id: https://svn.neo-layout.org@688 b9310e46-f624-0410-8ea1-cfbb3a30dc96
Diffstat (limited to 'windows')
-rw-r--r--windows/autohotkey/Source/All.ahk1
-rw-r--r--windows/autohotkey/Source/Methods-Other.ahk2
-rw-r--r--windows/autohotkey/neo20.ahk2
-rw-r--r--windows/autohotkey/neo20.exebin417325 -> 417327 bytes
4 files changed, 3 insertions, 2 deletions
diff --git a/windows/autohotkey/Source/All.ahk b/windows/autohotkey/Source/All.ahk
index 2012367..b719fac 100644
--- a/windows/autohotkey/Source/All.ahk
+++ b/windows/autohotkey/Source/All.ahk
@@ -19,5 +19,6 @@
#Include %a_scriptdir%\Keys-Neo.ahk
#Include %a_scriptdir%\Methods-Lights.ahk
#Include %a_scriptdir%\Methods-Other.ahk
+;#Include %a_scriptdir%\Methods-Unicode.ahk
;#Include *i %a_scriptdir%\..\Compose\Compose-all-in-one.ahk
diff --git a/windows/autohotkey/Source/Methods-Other.ahk b/windows/autohotkey/Source/Methods-Other.ahk
index 8021ad1..9774b72 100644
--- a/windows/autohotkey/Source/Methods-Other.ahk
+++ b/windows/autohotkey/Source/Methods-Other.ahk
@@ -167,7 +167,7 @@ SendUnicodeChar(charCode)
IfWinActive, ahk_class gdkWindowToplevel
{
StringLower, charCode, charCode
- send "^+u" . SubStr(charCode,3) . " "
+ send % "^+u" . SubStr(charCode,3) . " "
} else {
VarSetCapacity(ki, 28 * 2, 0)
diff --git a/windows/autohotkey/neo20.ahk b/windows/autohotkey/neo20.ahk
index 30277d1..bfa5b8f 100644
--- a/windows/autohotkey/neo20.ahk
+++ b/windows/autohotkey/neo20.ahk
@@ -4830,7 +4830,7 @@ SendUnicodeChar(charCode)
IfWinActive, ahk_class gdkWindowToplevel
{
StringLower, charCode, charCode
- send "^+u" . SubStr(charCode,3) . " "
+ send % "^+u" . SubStr(charCode,3) . " "
} else {
VarSetCapacity(ki, 28 * 2, 0)
diff --git a/windows/autohotkey/neo20.exe b/windows/autohotkey/neo20.exe
index 37cfea4..7e47359 100644
--- a/windows/autohotkey/neo20.exe
+++ b/windows/autohotkey/neo20.exe
Binary files differ