Keep GroupViewer in front when popped up

Closes #3588
This commit is contained in:
Kurt 2022-09-15 17:37:23 -07:00
parent 787bf1a49b
commit d8923fe3fb

View file

@ -570,7 +570,7 @@ public partial class SAVEditor : UserControl, ISlotViewer<PictureBox>, ISaveFile
if (form != null)
form.CenterToForm(ParentForm);
else
form = new SAV_GroupViewer(sav, M.Env.PKMEditor, g);
form = new SAV_GroupViewer(sav, M.Env.PKMEditor, g) { TopMost = true };
form.BringToFront();
form.Show();
}