mirror of
https://github.com/jie65535/GrasscutterCommandGenerator.git
synced 2025-06-09 23:29: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>
|
/// <param name="command">命令</param>
|
||||||
private void SetCommand(string command)
|
private void SetCommand(string command)
|
||||||
{
|
{
|
||||||
|
if (ModifierKeys == Keys.Shift)
|
||||||
|
TxtCommand.Text += " | " + command;
|
||||||
|
else
|
||||||
TxtCommand.Text = command;
|
TxtCommand.Text = command;
|
||||||
|
|
||||||
if (ChkAutoCopy.Checked)
|
if (ChkAutoCopy.Checked)
|
||||||
CopyCommand();
|
CopyCommand();
|
||||||
if (ModifierKeys == Keys.Control)
|
if (ModifierKeys == Keys.Control)
|
||||||
|
Loading…
Reference in New Issue
Block a user