Skip to content

Commit

Permalink
Checkbox text wraps onto the next line
Browse files Browse the repository at this point in the history
  • Loading branch information
Katherine Liu committed Jul 7, 2023
1 parent 89e8992 commit fd03bf1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ internal class SkateConfigUI(

private fun Panel.checkBoxRow() {
row(SkateBundle.message("skate.configuration.enableWhatsNew.title")) {
checkBox(SkateBundle.message("skate.configuration.enableWhatsNew.description"))
checkBox(
"<html>${SkateBundle.message("skate.configuration.enableWhatsNew.description")}</html>"
)
.bindSelected(
getter = { settings.isWhatsNewEnabled },
setter = { settings.isWhatsNewEnabled = it }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ skate.configuration.title=Skate Settings
skate.configuration.choosePath.title=Choose file
skate.configuration.choosePath.dialog.title=Choose Changelog File
skate.configuration.enableWhatsNew.title=Enable What's New Panel
skate.configuration.enableWhatsNew.description=If enabled, shows the What's New Panel if there are new changes detected in a specified changelog file.
skate.configuration.enableWhatsNew.description=If enabled, shows the What's New Panel if there are new changes detected <br> in a specified changelog file.

0 comments on commit fd03bf1

Please sign in to comment.