main: On load bring to front

This commit is contained in:
2023-06-14 15:28:59 +10:00
parent 036819169d
commit 816e16a9aa

View File

@@ -93,8 +93,9 @@ namespace FireWallet
Opacity = 1; Opacity = 1;
batchMode = false; batchMode = false;
// Pull form to front // Pull form to front
this.BringToFront(); this.WindowState = FormWindowState.Minimized;
this.Focus(); this.Show();
this.WindowState = FormWindowState.Normal;
textBoxaccountpassword.Focus(); textBoxaccountpassword.Focus();
} }