From 395e368d321c9eb15f99cb129dda934c99fcd44f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Minisini?= Date: Sat, 20 Aug 2022 16:34:33 +0200 Subject: [PATCH] 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. --- comp/src/gb.form.editor/.src/CDocument.class | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/comp/src/gb.form.editor/.src/CDocument.class b/comp/src/gb.form.editor/.src/CDocument.class index e3525e66b..545f68291 100644 --- a/comp/src/gb.form.editor/.src/CDocument.class +++ b/comp/src/gb.form.editor/.src/CDocument.class @@ -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