Edited files will not remain locked anymore after the debugger stops.

[DEVELOPMENT ENVIRONMENT]
* BUG: Edited files will not remain locked anymore after the debugger stops.
This commit is contained in:
Benoît Minisini 2023-03-11 09:52:49 +01:00
parent 2a8e061374
commit c43e3f8d53

View file

@ -642,8 +642,8 @@ Private Sub AfterStop()
$hBrowser = Null
Endif
For Each hForm In Project.Workspace.Windows
Try hForm.OnProjectDebug
For Each hForm In Project.Files
Try hForm.OnProjectDebug()
Next
FMain.OnProjectDebug
@ -1103,8 +1103,8 @@ Private Sub Start(sCmd As String)
$bStart = True
Project.Running = True
For Each hForm In Project.Workspace.Windows
Try hForm.OnProjectDebug
For Each hForm In Project.Files
Try hForm.OnProjectDebug()
Next
FOutput.OnProjectDebug
FMain.OnProjectDebug