We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe9c6d8 commit 64fd0beCopy full SHA for 64fd0be
1 file changed
Source/Plugins/HexEditor/VanguardConnector.cs
@@ -33,7 +33,10 @@ public object OnMessageReceived(object sender, NetCoreEventArgs e)
33
S.SET(new HexEditor());
34
}
35
S.GET<HexEditor>().Restart();
36
+ // Why does this form refuse to be on top unless it's restored? ¯\_(ツ)_/¯
37
+ S.GET<HexEditor>().WindowState = System.Windows.Forms.FormWindowState.Minimized;
38
S.GET<HexEditor>().Show();
39
+ S.GET<HexEditor>().WindowState = System.Windows.Forms.FormWindowState.Normal;
40
});
41
42
break;
0 commit comments