Skip to content

Commit

Permalink
Fix unreadable changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
qhy040404 committed May 15, 2023
1 parent 279061d commit 1e461bb
Showing 1 changed file with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,7 @@ object UpdateUtils {
val dialogBody = buildSpannedString {
inSpans(
RelativeSizeSpan(1.4F),
StyleSpan(Typeface.BOLD),
ForegroundColorSpan(R.color.black.getColor(context))
StyleSpan(Typeface.BOLD)
) {
append(versionName)
}
Expand All @@ -126,9 +125,7 @@ object UpdateUtils {
append('\t')
if (it.startsWith("* ")) {
append(
it.substring(2),
ForegroundColorSpan(R.color.material_grey_800.getColor(context)),
Spannable.SPAN_INCLUSIVE_EXCLUSIVE
it.substring(2)
)
} else {
append(
Expand Down

0 comments on commit 1e461bb

Please sign in to comment.