Skip to content

Commit

Permalink
fix(settings): Set default accent color to fix broken theme
Browse files Browse the repository at this point in the history
  • Loading branch information
realth000 committed Aug 10, 2024
1 parent 009c392 commit 048a231
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

- app:修复当图片缓存失效时,图片没有重新加载的问题。
- app:修复图片加载失败时依然显示正在加载的问题。
- app:修复先前升级flutter版本导致的默认配色问题,现在使用默认的蓝色作为色调。
- 翻译:修复部分错误翻译。
- 帖子:修复部分签名有样式溢出的用户的楼层无法回复和评分的问题。
- 帖子:修复帖子评分中头像无法加载时不显示且不断重试的问题。
Expand Down
2 changes: 1 addition & 1 deletion lib/shared/models/settings.dart
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ enum SettingsKeys implements Comparable<SettingsKeys> {
accentColor(
name: 'accentColor',
type: int,
defaultValue: -1,
defaultValue: 4280391411, // PrimaryColors.blue
),

/// Show badge or unread notice count on notice button.
Expand Down

0 comments on commit 048a231

Please sign in to comment.