Fixed bug with disappearing text after showing app from the tray

This commit is contained in:
Alexander 2021-04-06 18:02:56 +03:00
parent b97a5ca76f
commit 00d20db932
No known key found for this signature in database
GPG key ID: F68D8C9B429E6FF6

View file

@ -2153,6 +2153,7 @@ private void TrayIcon_MouseDoubleClick(object sender, MouseEventArgs e)
{
Show();
WindowState = currentWindowState;
richTextBox.Visible = true;
}
}
}
@ -2168,6 +2169,7 @@ private void ShowWindowTrayMenu_Click(object sender, EventArgs e)
{
Show();
WindowState = currentWindowState;
richTextBox.Visible = true;
}
}
private void ExitTrayMenu_Click(object sender, EventArgs e)