From 816e16a9aabe081d26beb28712e7b0e1dab050f3 Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Wed, 14 Jun 2023 15:28:59 +1000 Subject: [PATCH] main: On load bring to front --- FireWallet/MainForm.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/FireWallet/MainForm.cs b/FireWallet/MainForm.cs index 426253a..9868ca6 100644 --- a/FireWallet/MainForm.cs +++ b/FireWallet/MainForm.cs @@ -93,9 +93,10 @@ namespace FireWallet Opacity = 1; batchMode = false; // Pull form to front - this.BringToFront(); - this.Focus(); - + this.WindowState = FormWindowState.Minimized; + this.Show(); + this.WindowState = FormWindowState.Normal; + textBoxaccountpassword.Focus(); } private void MainForm_Closing(object sender, FormClosingEventArgs e)