mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-06-19 13:28:16 +08:00
Fix line break regression
In commit d1d94cd
, we accidentally introduced a regression
since conhost requires all line breaks to be `\r\n`.
This commit is contained in:

committed by
Phil Scott

parent
1dfc6bdadc
commit
6549436356
@ -29,7 +29,7 @@ namespace Spectre.Console
|
||||
if (_lastStatus != task.Description)
|
||||
{
|
||||
_lastStatus = task.Description;
|
||||
_renderable = new Markup(task.Description + "\n");
|
||||
_renderable = new Markup(task.Description + Environment.NewLine);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user