Skip to content
This repository has been archived by the owner on Feb 17, 2024. It is now read-only.

Commit

Permalink
fix: 从自定义主题切换到动态取色时显示异常
Browse files Browse the repository at this point in the history
  • Loading branch information
HuanCheng65 committed Feb 1, 2024
1 parent fe0c667 commit 587bfef
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ fun AppThemePage(
horizontalArrangement = Arrangement.spacedBy(16.dp),
) {
Icon(
imageVector = if (currentTheme == ThemeUtil.THEME_CUSTOM) {
imageVector = if (!isDynamicTheme && currentTheme == ThemeUtil.THEME_CUSTOM) {
Icons.Rounded.Check
} else {
Icons.Rounded.ColorLens
Expand Down

0 comments on commit 587bfef

Please sign in to comment.