holding Shift key appends command (#2)

This commit is contained in:
Егор Брон 2022-11-13 18:34:38 +03:00
parent 1dfaa924e5
commit 32d550a80a

View File

@ -1977,7 +1977,11 @@ namespace GrasscutterTools.Forms
/// <param name="command">命令</param>
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)