mirror of
https://github.com/Crypto-Notepad/Crypto-Notepad.git
synced 2026-03-11 08:55:25 +00:00
Fixed bug with disappearing text after showing app from the tray
This commit is contained in:
parent
b97a5ca76f
commit
00d20db932
1 changed files with 2 additions and 0 deletions
|
|
@ -2153,6 +2153,7 @@ private void TrayIcon_MouseDoubleClick(object sender, MouseEventArgs e)
|
||||||
{
|
{
|
||||||
Show();
|
Show();
|
||||||
WindowState = currentWindowState;
|
WindowState = currentWindowState;
|
||||||
|
richTextBox.Visible = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -2168,6 +2169,7 @@ private void ShowWindowTrayMenu_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
Show();
|
Show();
|
||||||
WindowState = currentWindowState;
|
WindowState = currentWindowState;
|
||||||
|
richTextBox.Visible = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
private void ExitTrayMenu_Click(object sender, EventArgs e)
|
private void ExitTrayMenu_Click(object sender, EventArgs e)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue