Update 'D3K.ahk'

It was inputting the case ID, xID, and related data after it was cleared. Added a goto to fix that behaviour.
This commit is contained in:
David Daily 2020-01-03 09:12:30 -06:00
parent 31751b4066
commit 0bb3681dc5
1 changed files with 9 additions and 3 deletions

12
D3K.ahk
View File

@ -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