From 7464792f708a33ba9a774ed009542015468915e9 Mon Sep 17 00:00:00 2001 From: mösi Date: Fri, 26 Mar 2010 07:29:42 +0000 Subject: • GSYM wird an anderer Stelle in anderem Zusammenhang evaluiert und sollte nie existieren, daher muss die lokale Variable umbenannt werden. Effekt war, dass nach einem Durchlauf dieses Abschnitts, wenn also GSYM belegt ist, unbelegte Tasten den letzten Wert von GSYM anstelle eines Leerstrings anzeigen. • == ist für echten String-Compare besser. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: https://svn.neo-layout.org@2223 b9310e46-f624-0410-8ea1-cfbb3a30dc96 --- windows/neo-vars/src/source/screenkeyboard_new.ahk | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'windows') diff --git a/windows/neo-vars/src/source/screenkeyboard_new.ahk b/windows/neo-vars/src/source/screenkeyboard_new.ahk index 681ac24..5a2b677 100644 --- a/windows/neo-vars/src/source/screenkeyboard_new.ahk +++ b/windows/neo-vars/src/source/screenkeyboard_new.ahk @@ -46,9 +46,9 @@ rerun_bstnupdate: if (GSYM%GuiComp1% != "") { GuiComp .= GSYM%GuiComp1% } else if (CD%GuiComp1% != "") { - GSym := CD%GuiComp1% - if (GSYM%GSym% != "") - GuiComp .= GSYM%Gsym% + G_Sym := CD%GuiComp1% + if (GSYM%G_Sym% != "") + GuiComp .= GSYM%G_sym% else GuiComp .= CD%GuiComp1% } else if (CM%GuiComp1% == 1) { @@ -58,7 +58,7 @@ rerun_bstnupdate: GuiComp .= CF%CurrentComp% CurrentComp := "" goto rerun_bstnupdate - } else if (CurrentComp = "") { + } else if (CurrentComp == "") { GuiComp .= GuiComp1 } GuiPos := 0 -- cgit v1.2.3