mirror of
https://github.com/jie65535/GrasscutterCommandGenerator.git
synced 2025-12-15 10:11:35 +08:00
holding Shift key appends command (#2)
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user