mirror of
https://github.com/jie65535/GrasscutterCommandGenerator.git
synced 2025-06-07 22:59:14 +08:00
Fix Empty Copy (#47)
This commit is contained in:
parent
166f0b5fda
commit
110c1017e7
@ -966,7 +966,8 @@ namespace GrasscutterTools.Forms
|
||||
|
||||
private void CopyCommand()
|
||||
{
|
||||
Clipboard.SetText(TxtCommand.Text);
|
||||
if (!string.IsNullOrEmpty(TxtCommand.Text))
|
||||
Clipboard.SetText(TxtCommand.Text);
|
||||
}
|
||||
|
||||
private void OnOpenCommandInvoke()
|
||||
|
Loading…
Reference in New Issue
Block a user