From aa271423f9bfac2fdd1e08235e48320e564af97b Mon Sep 17 00:00:00 2001 From: Alekhya Date: Tue, 21 Apr 2020 08:43:28 -0700 Subject: [PATCH] Changed to SystemChromeLow from Accent brush (#2272) --- src/modules/launcher/PowerLauncher.UI/App.xaml | 4 ++-- src/modules/launcher/PowerLauncher.UI/LauncherControl.xaml.cs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/modules/launcher/PowerLauncher.UI/App.xaml b/src/modules/launcher/PowerLauncher.UI/App.xaml index 14fbabb255..18c75dbbaf 100644 --- a/src/modules/launcher/PowerLauncher.UI/App.xaml +++ b/src/modules/launcher/PowerLauncher.UI/App.xaml @@ -13,7 +13,7 @@ - + @@ -23,7 +23,7 @@ - + diff --git a/src/modules/launcher/PowerLauncher.UI/LauncherControl.xaml.cs b/src/modules/launcher/PowerLauncher.UI/LauncherControl.xaml.cs index d96c4b28f8..1713974da9 100644 --- a/src/modules/launcher/PowerLauncher.UI/LauncherControl.xaml.cs +++ b/src/modules/launcher/PowerLauncher.UI/LauncherControl.xaml.cs @@ -35,12 +35,12 @@ namespace PowerLauncher.UI private void UserControl_ActualThemeChanged(FrameworkElement sender, object args) { - SolidBorderBrush = Application.Current.Resources["SystemControlHighlightAccentBrush"] as SolidColorBrush; + SolidBorderBrush = Application.Current.Resources["SystemChromeLow"] as SolidColorBrush; } private void UserControl_Loaded(object sender, RoutedEventArgs e) { - SolidBorderBrush = Application.Current.Resources["SystemControlHighlightAccentBrush"] as SolidColorBrush; + SolidBorderBrush = Application.Current.Resources["SystemChromeLow"] as SolidColorBrush; } public event PropertyChangedEventHandler PropertyChanged;