Skip to content

Commit

Permalink
#953 修复跟随系统时主题颜色错误
Browse files Browse the repository at this point in the history
  • Loading branch information
ywmoyue committed Dec 21, 2024
1 parent 063b6b4 commit afd771c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/BiliLite.UWP/Services/ThemeService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public ThemeService()
m_theme = (ElementTheme)SettingService.GetValue<int>(SettingConstants.UI.THEME, 0);
if (m_theme == ElementTheme.Default)
{
m_theme = (ElementTheme)(App.Current.RequestedTheme - 1);
m_theme = (ElementTheme)(App.Current.RequestedTheme + 1);
}
}

Expand Down

0 comments on commit afd771c

Please sign in to comment.