Skip to content

Commit 4a72783

Browse files
committed
Use preset White color instead of RGB.
1 parent 19459aa commit 4a72783

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MainWindow.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ public void logMessage(string msg)
285285

286286
public void logMessage(string msg, LogType lt)
287287
{
288-
Color color = Color.FromRgb(255,255,255);
288+
Color color = Colors.White;
289289
if (lt == LogType.Success)
290290
{
291291
color = Color.FromRgb(0, 200, 0);

0 commit comments

Comments
 (0)