From d1c232df9df728a003b76450fce8c1d85c87738a Mon Sep 17 00:00:00 2001 From: Florian Stinglmayr Date: Sun, 26 Feb 2023 10:09:50 +0100 Subject: [PATCH] if there is a bug, use a default skin --- EliteBGS/MainWindow.xaml.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/EliteBGS/MainWindow.xaml.cs b/EliteBGS/MainWindow.xaml.cs index 4db3a9d..6875ac0 100644 --- a/EliteBGS/MainWindow.xaml.cs +++ b/EliteBGS/MainWindow.xaml.cs @@ -23,7 +23,7 @@ namespace EliteBGS; /// /// Interaction logic for MainWindow.xaml /// -public partial class MainWindow : MahApps.Metro.Controls.MetroWindow { +public partial class MainWindow : MetroWindow { private PlayerJournal journal; private Report report; @@ -86,7 +86,7 @@ public partial class MainWindow : MahApps.Metro.Controls.MetroWindow { ThemeManager.Current.ChangeTheme(this, Config.Global.FullTheme); } catch (Exception) { // Theme is invalid, revert back to our standard dark theme - Config.Global.Colour = "HouseSalus"; + Config.Global.Colour = "Amber"; Config.Global.Theme = "Dark"; }