Information
- OS: Windows 11
- Version: last
- Terminal: cmd
Describe the bug
只要内容中含有 ℃ ,整个实时布局(AnsiConsole.Live)就会错乱
Screenshots
`using Spectre.Console;
AnsiConsole.Live(new Text("ini")).Start(ctx =>
{
var items = "1 2 3 a b c 中国 ℃ 4 d ".Split(" ");
string show = string.Empty;
foreach (var item in items)
{
show += item;
var panel = new Panel(show).AsciiBorder().Expand();
ctx.UpdateTarget(panel);
Thread.Sleep(1000);
}
});`
Information
Describe the bug
只要内容中含有 ℃ ,整个实时布局(AnsiConsole.Live)就会错乱
Screenshots
`using Spectre.Console;
AnsiConsole.Live(new Text("ini")).Start(ctx =>
{
var items = "1 2 3 a b c 中国 ℃ 4 d ".Split(" ");
});`