Skip to content

Commit 9502c4a

Browse files
committed
Fixed reload
Replaced reload with old method (ahkReload was causing crashing)
1 parent 7a84b8f commit 9502c4a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

data/workerH.ahk

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,8 @@ class fileList {
112112
return this.scripts[scriptName].thread.ahkExec(code)
113113
}
114114
reload(scriptName){
115-
this.scripts[scriptName].thread.ahkReload()
115+
this.close(scriptName)
116+
return this.run(scriptName)
116117
}
117118
listlines(scriptName){
118119
if(this.scripts[scriptName].dll="Mini")

0 commit comments

Comments
 (0)