Ver código fonte

fixed default fg color on windows

master
Robin Thoni 7 anos atrás
pai
commit
57fd5d1a06
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1
    1
      uqac-ia-aspirobot/UI/UiConsole.cs

+ 1
- 1
uqac-ia-aspirobot/UI/UiConsole.cs Ver arquivo

83
         {
83
         {
84
             if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
84
             if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
85
             {
85
             {
86
-                Console.ForegroundColor = color.GetValueOrDefault(ConsoleColor.Black);
86
+                Console.ForegroundColor = color.GetValueOrDefault(ConsoleColor.White);
87
             }
87
             }
88
             else
88
             else
89
             {
89
             {

Carregando…
Cancelar
Salvar