From f8fce58c200c292f557e186544816a0eaf8af5a2 Mon Sep 17 00:00:00 2001 From: PhatDave Date: Wed, 27 Oct 2021 15:37:24 +0200 Subject: [PATCH] Fixed bug that was introduced last commit --- Echo.ahk | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Echo.ahk b/Echo.ahk index e077848..cfd7c63 100644 --- a/Echo.ahk +++ b/Echo.ahk @@ -12,7 +12,7 @@ ih.OnKeyUp := Func("OnKeyUp") ih.Start() global enabledWindows := Array() -enabledWindows.Push(Array()) +enabledWindows.Push(Array())t enabledWindows.Push(Array()) global keyLog := {} @@ -134,8 +134,6 @@ KeyLogToString() { output := "" for k, v in keyLog { output .= k - output .= " " - output .= v output .= "|" } StringTrimRight, output, output, 1