Skip to content

Commit

Permalink
Merge pull request #137 from pucamafra/bugfix/main/fix-font-weight-st…
Browse files Browse the repository at this point in the history
…yle-not-being-applied

Invert order to avoiding overriding font weight and style configuration
  • Loading branch information
jeziellago authored Nov 27, 2024
2 parents 320d99a + 7e55b73 commit 279b9ab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,9 @@ fun MarkdownText(

with(style) {
applyTextAlign(textAlign)
fontFamily?.let { applyFontFamily(it) }
fontStyle?.let { applyFontStyle(it) }
fontWeight?.let { applyFontWeight(it) }
fontFamily?.let { applyFontFamily(it) }
}
}
markdownRender.setMarkdown(textView, markdown)
Expand Down

0 comments on commit 279b9ab

Please sign in to comment.