Skip to content

Commit

Permalink
fix - Fixed aurora printing a newline
Browse files Browse the repository at this point in the history
---

We've fixed aurora not rendering properly, causing a new line to appear.

---

Type: fix
Breaking: False
Doc Required: False
Part: 1/1
  • Loading branch information
AptiviCEO committed Feb 23, 2024
1 parent e2f8d05 commit 477be51
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public override void ScreensaverLogic()
builder.Append($"{storage.VTSequenceBackground}{new string(' ', ConsoleWrapper.WindowWidth)}");
}
if (!ConsoleResizeHandler.WasResized(false))
TextWriterColor.Write(builder.ToString());
TextWriterRaw.WriteRaw(builder.ToString());
ConsoleWrapper.SetCursorPosition(0, 0);
ThreadManager.SleepNoBlock(AuroraSettings.AuroraDelay, ScreensaverDisplayer.ScreensaverDisplayerThread);

Expand Down

0 comments on commit 477be51

Please sign in to comment.