Remove Light theme fallback since it's too aggressive

This commit is contained in:
Caeden Statia 2020-02-23 11:56:30 -08:00
parent 757b38c186
commit fa3616fafc
2 changed files with 1 additions and 5 deletions

View file

@ -14,10 +14,6 @@
<!-- Load default sidebar theme, in case LoadedTheme doesn't have Sidebar properties applied. -->
<ResourceDictionary x:Name="DefaultSidebarTheme" Source="Themes/Default_Sidebar.xaml"/>
<!-- Load default theme, in case the LoadedTheme does not include any visual elements for some controls.
If someone tried to load a completely empty theme, it will "fall back" to Light theme.-->
<ResourceDictionary x:Name="DefaultTheme" Source="Themes/Light.xaml"/>
<!-- Load theme to be modified via the Theme engine. -->
<ResourceDictionary x:Name="LoadedTheme" Source="Themes/Dark.xaml"/>

View file

@ -28,7 +28,7 @@ namespace ModAssistant
/// <summary>
/// Index of "LoadedTheme" in App.xaml
/// </summary>
private static readonly int LOADED_THEME_INDEX = 4;
private static readonly int LOADED_THEME_INDEX = 3;
private static List<string> supportedVideoExtensions = new List<string>() { ".mp4", ".webm", ".mkv", ".avi", ".m2ts" };