From 28a1be8a6d13b93c0c11e2ff808713ad727ed002 Mon Sep 17 00:00:00 2001 From: Aptivi CEO Date: Mon, 23 Oct 2023 11:20:33 +0300 Subject: [PATCH] fix - Fixed cursor visibility --- We've fixed cursor visibility when exiting from modal informational boxes. --- Type: fix Breaking: False Doc Required: False Part: 1/1 --- GRILO.Bootloader/GRILO.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/GRILO.Bootloader/GRILO.cs b/GRILO.Bootloader/GRILO.cs index ec39995..13c753f 100644 --- a/GRILO.Bootloader/GRILO.cs +++ b/GRILO.Bootloader/GRILO.cs @@ -33,6 +33,7 @@ using Terminaux.Sequences.Builder; using Terminaux.Reader.Inputs; using Terminaux.Writer.ConsoleWriters; +using Terminaux.Base; namespace GRILO.Bootloader { @@ -87,6 +88,7 @@ static void Main() // Render the menu DiagnosticsWriter.WriteDiag(DiagnosticsLevel.Info, "Rendering menu..."); + ConsoleWrappers.ActionCursorVisible(false); Console.Clear(); BootStyleManager.RenderMenu(chosenBootEntry);