spectreconsole/spectre.console

Spinner always using ASCII

Closed this issue · 0 comments

Information

  • OS: Windows
  • Version: 26100.3915
  • Terminal: Windows Terminal

Describe the bug
AnsiConsole.Status() always uses the ascii spinner, regardless of what is specified. For some reason it does work when using the csharprepl tool.

To Reproduce

using Spectre.Console;

AnsiConsole.Status()
  .Spinner(Spinner.Known.Default)
  .Start("Thinking...", ctx =>
  {
    Thread.Sleep(3000);
  });

Expected behavior
It should display the default animation (some dots) instead of ascii.

Screenshots

Image

Image


Please upvote 👍 this issue if you are interested in it.