Skip to content

Commit

Permalink
exit menu handle bug
Browse files Browse the repository at this point in the history
  • Loading branch information
jmclaren7 committed Sep 18, 2023
1 parent 6ffd54d commit 6330e8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SimpleBackup.au3
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#AutoIt3Wrapper_UseX64=y
#AutoIt3Wrapper_Change2CUI=y
#AutoIt3Wrapper_Res_Description=SimpleBackup
#AutoIt3Wrapper_Res_Fileversion=1.0.0.185
#AutoIt3Wrapper_Res_Fileversion=1.0.0.186
#AutoIt3Wrapper_Res_Fileversion_AutoIncrement=y
#AutoIt3Wrapper_Res_ProductVersion=1
#AutoIt3Wrapper_Res_LegalCopyright=SimpleBackup
Expand Down Expand Up @@ -284,7 +284,7 @@ Func _WM_COMMAND($hWnd, $iMsg, $wParam, $lParam)

_ConsoleWrite("_WM_COMMAND ($Temp = " & $Temp & ") " & $GUI_RUNDEFMSG, 3)

If $Temp > 1000 And $Temp < 1100 Then
If $Temp >= 1000 And $Temp < 1100 Then
_ConsoleWrite("Update $MenuMsg")
Global $MenuMsg = $Temp
EndIf
Expand Down

0 comments on commit 6330e8e

Please sign in to comment.