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:
parent
2a8e061374
commit
c43e3f8d53
1 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue