From 0bb3681dc575d689dfd2830cc4e9bbfbb51b443e Mon Sep 17 00:00:00 2001 From: david Date: Fri, 3 Jan 2020 09:12:30 -0600 Subject: [PATCH] Update 'D3K.ahk' It was inputting the case ID, xID, and related data after it was cleared. Added a goto to fix that behaviour. --- D3K.ahk | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/D3K.ahk b/D3K.ahk index 76c1c73..a49d8a5 100644 --- a/D3K.ahk +++ b/D3K.ahk @@ -166,14 +166,20 @@ GloVar: FileDelete, glovar.ahk ; THE CLEAN SLATE FileAppend, #SingleInstance force`n`n, glovar.ahk Sleep, 500 + FileGetTime, gvMod, %glovarini% ; Make sure that this script knows what the ini was changed to so it doesn't constantly run through the above code + If FileExist("glovar.ahk") + { + Run glovar.ahk + } + Goto, GloVar } } } FileGetTime, gvMod, %glovarini% ; Make sure that this script knows what the ini was changed to so it doesn't constantly run through the above code If FileExist("glovar.ahk") - { - Run glovar.ahk - } + { + Run glovar.ahk + } } } Return