mirror of
https://github.com/jie65535/GrasscutterCommandGenerator.git
synced 2025-06-06 22:39:15 +08:00
Fix command response new line
This commit is contained in:
parent
f553ddddd8
commit
0788a32158
@ -617,7 +617,7 @@ namespace GrasscutterTools.Forms
|
||||
{
|
||||
Logger.I(TAG, "RunCommand:" + cmd);
|
||||
var msg = await Common.OC.Invoke(cmd);
|
||||
TxtCommandRunLog.AppendText(string.IsNullOrEmpty(msg) ? "OK" : msg);
|
||||
TxtCommandRunLog.AppendText(string.IsNullOrEmpty(msg) ? "OK" : msg.Replace("\n", "\r\n"));
|
||||
TxtCommandRunLog.AppendText(Environment.NewLine);
|
||||
}
|
||||
catch (Exception ex)
|
||||
|
Loading…
Reference in New Issue
Block a user