TextEditor: Raise the 'Change' event when loading a file, settings the bookmarks or the disabled breakpoints.

[GB.FORM.EDITOR]
* BUG: TextEditor: Raise the 'Change' event when loading a file, settings the bookmarks or the disabled breakpoints.
This commit is contained in:
Benoît Minisini 2022-08-20 16:34:33 +02:00
parent 61615b5263
commit 395e368d32

View file

@ -163,6 +163,8 @@ Public Sub Load(sPath As String, bAddNewLine As Boolean)
'HighlightFrom(0)
LayoutLines
RaiseChange
End
Public Sub Save(sPath As String)
@ -1178,6 +1180,7 @@ Private Sub Bookmarks_Write(Value As Integer[])
Endif
Refresh
RaiseChange
End
@ -1569,6 +1572,7 @@ Private Sub DisabledBreakpoints_Write(Value As Integer[])
Endif
Refresh
RaiseChange
End