We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cc294e commit ed01567Copy full SHA for ed01567
File_Format_Library/FileFormats/BSMAT/BSMAT.cs
@@ -41,13 +41,16 @@ public Type[] Types
41
public TextEditor OpenForm()
42
{
43
var textEditor = new TextEditor();
44
+ FillEditor(textEditor);
45
return textEditor;
46
}
47
48
public void FillEditor(UserControl control)
49
50
((TextEditor)control).FileFormat = this;
51
((TextEditor)control).FillEditor(JsonContents);
52
+ ((TextEditor)control).TextEditorChanged = null;
53
+
54
((TextEditor)control).TextEditorChanged += delegate
55
56
JsonContents = ((TextEditor)control).GetText();
0 commit comments