Replace suspend with reload

Although both are supported via the json config file
This commit is contained in:
2025-12-31 20:27:08 +01:00
parent 56abcd95a5
commit dbe9913b8a
5 changed files with 29 additions and 7 deletions

View File

@@ -70,6 +70,17 @@
}
}
; Register Hotkey for Reload Script if the user has is Set
if (This.Reload_Script_Hotkey != "") {
HotIf (*) => WinExist(This.EVEExe)
try {
Hotkey This.Reload_Script_Hotkey, ( * ) => This.Reload_Script(), "S1"
}
catch ValueError as e {
MsgBox(e.Message ": --> " e.Extra " <-- in: Global Settings -> Reload Script-Hotkey" )
}
}
; The Timer property for Asycn Minimizing.
this.timer := ObjBindMethod(this, "EVEMinimize")
This.Register_CharSelectionScreen_Hotkeys()