Skip to content

Commit 7227b29

Browse files
committed
[FlashpointManager] Display operation window in center of screen when launched using the /download argument
1 parent 9c55447 commit 7227b29

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

FlashpointManager/src/Forms/Main.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,10 @@ private void Main_Load(object sender, EventArgs e)
4949

5050
FPM.CheckDependencies(false);
5151

52-
new Operate() { TopMost = true }.ShowDialog();
52+
new Operate() {
53+
StartPosition = FormStartPosition.CenterScreen,
54+
TopMost = true
55+
}.ShowDialog();
5356

5457
Close();
5558
}

0 commit comments

Comments
 (0)