You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Rendering is wrong in live rendering for hidden table headers & no border. The rendering starts on the wrong line (off by 1 line) when Refresh() is requested.
To Reproduce
using Spectre.Console;
var table = new Table().AddColumn("hidden").HideHeaders().NoBorder();
AnsiConsole.Live(table).Start(ctx =>
{
table.AddRow("toto");
ctx.Refresh();
table.AddRow("titi");
});
Expected behavior
Rendering must start on correct line.
Screenshots
What the code above renders:
What is expected:
Additional context
Please upvote 👍 this issue if you are interested in it.
The text was updated successfully, but these errors were encountered:
Information
Describe the bug
Rendering is wrong in live rendering for hidden table headers & no border. The rendering starts on the wrong line (off by 1 line) when
Refresh()
is requested.To Reproduce
Expected behavior
Rendering must start on correct line.
Screenshots
What the code above renders:
What is expected:
Additional context
Please upvote 👍 this issue if you are interested in it.
The text was updated successfully, but these errors were encountered: