Merge pull request #17 from metathinker/master

ColorTool: Restore old console colors after printing the color table
This commit is contained in:
Mike Griese 2017-08-15 09:10:26 -07:00 committed by GitHub
commit ce43f9af2a

View file

@ -170,6 +170,10 @@ namespace ColorTool
}
Console.Write("\n");
// Reset foreground and background colors
Console.ForegroundColor = currentForeground;
Console.BackgroundColor = currentBackground;
}
static bool SetProperties(uint[] colorTable)