Skip to content

Commit

Permalink
Decreased the text area top margin for the dialogue dialog if an icon…
Browse files Browse the repository at this point in the history
… button is present
  • Loading branch information
Andrettin committed Dec 12, 2021
1 parent 1cef12b commit 0efd639
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion interface/dialogs/DialogueDialog.qml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ DialogBase {
ScrollableTextArea {
id: text_label
anchors.top: icon_button.visible ? icon_button.bottom : title_item.bottom
anchors.topMargin: 16 * wyrmgus.scale_factor
anchors.topMargin: icon_button.visible ? 8 * wyrmgus.scale_factor : 16 * wyrmgus.scale_factor
anchors.left: parent.left
anchors.leftMargin: 8 * wyrmgus.scale_factor
anchors.right: parent.right
Expand Down

0 comments on commit 0efd639

Please sign in to comment.