diff --git a/Source/GrasscutterTools/Forms/FormMain.cs b/Source/GrasscutterTools/Forms/FormMain.cs index 1c4f183..73f1c5c 100644 --- a/Source/GrasscutterTools/Forms/FormMain.cs +++ b/Source/GrasscutterTools/Forms/FormMain.cs @@ -1977,7 +1977,11 @@ namespace GrasscutterTools.Forms /// 命令 private void SetCommand(string command) { - TxtCommand.Text = command; + if (ModifierKeys == Keys.Shift) + TxtCommand.Text += " | " + command; + else + TxtCommand.Text = command; + if (ChkAutoCopy.Checked) CopyCommand(); if (ModifierKeys == Keys.Control)