allow copying selected text from ExceptionBox

This commit is contained in:
zeromus 2020-06-20 22:25:04 -04:00
parent 703a51be09
commit f6f7847b95
1 changed files with 2 additions and 0 deletions

View File

@ -50,6 +50,8 @@ namespace BizHawk.Client.EmuHawk
{
if (keyData == (Keys.C | Keys.Control))
{
if (txtException.SelectionLength > 0)
return false;
DoCopy();
return true;
}