From 366004cdc1ed12d769584793c5394d1cba1988b4 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Thu, 19 Oct 2023 22:44:27 +0200 Subject: [PATCH] Change margins CURA-10561 --- resources/qml/Dialogs/AboutDialog.qml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/resources/qml/Dialogs/AboutDialog.qml b/resources/qml/Dialogs/AboutDialog.qml index 154281958e..d687f4a25d 100644 --- a/resources/qml/Dialogs/AboutDialog.qml +++ b/resources/qml/Dialogs/AboutDialog.qml @@ -63,7 +63,7 @@ UM.Dialog // Reusable component to display a dependency readonly property Component dependency_row: RowLayout { - spacing: UM.Theme.getSize("narrow_margin").width + spacing: UM.Theme.getSize("default_margin").width UM.Label { @@ -76,7 +76,7 @@ UM.Dialog } visible: text !== "" Layout.fillWidth: true - Layout.preferredWidth: 2 + Layout.preferredWidth: 1 onLinkActivated: Qt.openUrlExternally(url) } @@ -85,7 +85,7 @@ UM.Dialog text: description visible: text !== "" Layout.fillWidth: true - Layout.preferredWidth: 3 + Layout.preferredWidth: 2 } UM.Label @@ -93,7 +93,7 @@ UM.Dialog text: license visible: text !== "" Layout.fillWidth: true - Layout.preferredWidth: 2 + Layout.preferredWidth: 1 } UM.Label @@ -101,7 +101,7 @@ UM.Dialog text: version visible: text !== "" Layout.fillWidth: true - Layout.preferredWidth: 2 + Layout.preferredWidth: 1 } } @@ -117,7 +117,7 @@ UM.Dialog Column { id: content - spacing: UM.Theme.getSize("narrow_margin").width + spacing: UM.Theme.getSize("default_margin").height width: parent.width UM.Label @@ -251,6 +251,7 @@ UM.Dialog { width: parent.width visible: !showDefaultDependencies + Repeater { delegate: Loader