We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb9d6e4 commit 37ef117Copy full SHA for 37ef117
1 file changed
ReClass.NET/Forms/EnumEditorForm.cs
@@ -30,6 +30,20 @@ public EnumEditorForm(EnumDescription @enum)
30
}
31
32
33
+ protected override void OnLoad(EventArgs e)
34
+ {
35
+ base.OnLoad(e);
36
+
37
+ GlobalWindowManager.AddWindow(this);
38
+ }
39
40
+ protected override void OnFormClosed(FormClosedEventArgs e)
41
42
+ base.OnFormClosed(e);
43
44
+ GlobalWindowManager.RemoveWindow(this);
45
46
47
private void enumDataGridView_DefaultValuesNeeded(object sender, DataGridViewRowEventArgs e)
48
{
49
long value = e.Row.Index;
0 commit comments