Skip to content

Commit ed01567

Browse files
committed
Quick adjustment to editing bsmat
1 parent 8cc294e commit ed01567

File tree

1 file changed

+3
-0
lines changed
  • File_Format_Library/FileFormats/BSMAT

1 file changed

+3
-0
lines changed

File_Format_Library/FileFormats/BSMAT/BSMAT.cs

+3
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,16 @@ public Type[] Types
4141
public TextEditor OpenForm()
4242
{
4343
var textEditor = new TextEditor();
44+
FillEditor(textEditor);
4445
return textEditor;
4546
}
4647

4748
public void FillEditor(UserControl control)
4849
{
4950
((TextEditor)control).FileFormat = this;
5051
((TextEditor)control).FillEditor(JsonContents);
52+
((TextEditor)control).TextEditorChanged = null;
53+
5154
((TextEditor)control).TextEditorChanged += delegate
5255
{
5356
JsonContents = ((TextEditor)control).GetText();

0 commit comments

Comments
 (0)