Skip to content

Commit

Permalink
fix: 取消多余的《》
Browse files Browse the repository at this point in the history
  • Loading branch information
hefengbao committed Jun 7, 2024
1 parent 8942fae commit 130d5b9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ fun IdiomShowPanel(
source.text?.let { append(it) }
source.book?.let {
withStyle(style = SpanStyle(fontStyle = FontStyle.Italic)) {
append("${it}")
append(it)
}
}
}
Expand All @@ -86,7 +86,7 @@ fun IdiomShowPanel(
quote.text?.let { append(it) }
quote.book?.let {
withStyle(style = SpanStyle(fontStyle = FontStyle.Italic)) {
append("${it}")
append(it)
}
}
}
Expand Down Expand Up @@ -114,7 +114,7 @@ fun IdiomShowPanel(
example.text?.let { append(it) }
example.book?.let {
withStyle(style = SpanStyle(fontStyle = FontStyle.Italic)) {
append("${it}")
append(it)
}
}
}
Expand Down

0 comments on commit 130d5b9

Please sign in to comment.