mirror of
https://github.com/jie65535/GrasscutterCommandGenerator.git
synced 2025-06-08 23:19:14 +08:00
holding Shift key appends command (#2)
This commit is contained in:
parent
1dfaa924e5
commit
32d550a80a
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user