From 6dedc04957a1faec89a4b643b6aa7426e5d7df6b Mon Sep 17 00:00:00 2001 From: Daniel Schick Date: Tue, 21 Jan 2025 15:19:18 +0100 Subject: [PATCH] changed bg color for missing data --- src/BreCalClient/AppNotificationPart.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BreCalClient/AppNotificationPart.xaml.cs b/src/BreCalClient/AppNotificationPart.xaml.cs index b2f26ad..39a2f52 100644 --- a/src/BreCalClient/AppNotificationPart.xaml.cs +++ b/src/BreCalClient/AppNotificationPart.xaml.cs @@ -35,7 +35,7 @@ namespace BreCalClient this.ContentWrapper.Background = Brushes.Gray; break; case "MissingData": - this.ContentWrapper.Background= Brushes.Yellow; + this.ContentWrapper.Background = Brushes.DarkKhaki; break; case "Cancelled": this.ContentWrapper.Background = Brushes.DarkGray;