From 85bc79bde27f3e188bf02bf4a0b399ab392fc29e Mon Sep 17 00:00:00 2001 From: Lipu Fei Date: Tue, 7 Mar 2017 12:05:57 +0100 Subject: [PATCH] CURA-3221 Smaller settings column width for override profile dialog --- resources/qml/DiscardOrKeepProfileChangesDialog.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/qml/DiscardOrKeepProfileChangesDialog.qml b/resources/qml/DiscardOrKeepProfileChangesDialog.qml index 8ce09d7a4e..278f0dda2f 100644 --- a/resources/qml/DiscardOrKeepProfileChangesDialog.qml +++ b/resources/qml/DiscardOrKeepProfileChangesDialog.qml @@ -96,21 +96,21 @@ UM.Dialog role: "label" title: catalog.i18nc("@title:column", "Profile settings") delegate: labelDelegate - width: tableView.width * 0.5 + width: tableView.width * 0.4 } TableViewColumn { role: "original_value" title: "Default" - width: tableView.width * 0.25 + width: tableView.width * 0.3 delegate: defaultDelegate } TableViewColumn { role: "user_value" title: catalog.i18nc("@title:column", "Customized") - width: tableView.width * 0.25 - 1 + width: tableView.width * 0.3 - 1 } section.property: "category" section.delegate: Label