Skip to content

Commit 8d93bbc

Browse files
committed
fuck you forms fuck you forms fuck you forms fuck you forms fuck you forms
1 parent 0018596 commit 8d93bbc

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

BlueprintExplorer/Form1.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,9 @@ public Form1()
319319
settingsButton.Click += (sender, evt) =>
320320
{
321321
HideCtrlP();
322-
new SettingsView().ShowDialog();
322+
var settingsView = new SettingsView();
323+
settingsView.TopMost = true;
324+
settingsView.ShowDialog();
323325
};
324326

325327
BubblePrints.SetWrathPath(false, FolderChooser);
@@ -1017,6 +1019,7 @@ private void textBox1_TextChanged(object sender, EventArgs e)
10171019
private void helpButton_Click(object sender, EventArgs e)
10181020
{
10191021
helpView ??= new();
1022+
helpView.TopMost = true;
10201023
helpView.Disposed += (sender, e) => helpView = null;
10211024
if (helpView.Visible)
10221025
helpView.BringToFront();

0 commit comments

Comments
 (0)