mirror of
https://github.com/Crypto-Notepad/Crypto-Notepad.git
synced 2026-03-11 08:55:25 +00:00
Debug info now copied even by double click
This commit is contained in:
parent
60352d5e4c
commit
420697662e
1 changed files with 8 additions and 0 deletions
|
|
@ -127,6 +127,14 @@ private void RandomColorTimer_Tick(object sender, EventArgs e)
|
|||
Color randomColor = Color.FromArgb(rnd.Next(256), rnd.Next(256), rnd.Next(256));
|
||||
appVersionLabel.ForeColor = randomColor;
|
||||
}
|
||||
|
||||
private void AppVersionLabel_MouseDoubleClick(object sender, MouseEventArgs e)
|
||||
{
|
||||
if (e.Button == MouseButtons.Left)
|
||||
{
|
||||
GetDebugInfo();
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue