From 0efd6390564ab3af839d19c1a1315e9ef2e6b14f Mon Sep 17 00:00:00 2001 From: Andrettin <6322423+Andrettin@users.noreply.github.com> Date: Sun, 12 Dec 2021 18:25:16 +0100 Subject: [PATCH] Decreased the text area top margin for the dialogue dialog if an icon button is present --- interface/dialogs/DialogueDialog.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/dialogs/DialogueDialog.qml b/interface/dialogs/DialogueDialog.qml index 5d2569e109..a1dc6adf8f 100644 --- a/interface/dialogs/DialogueDialog.qml +++ b/interface/dialogs/DialogueDialog.qml @@ -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