Adjust margins on dialog to match designs

CURA-9424
This commit is contained in:
Joey de l'Arago 2022-11-02 15:33:47 +01:00
parent dbba1c4110
commit 7171249d3f
2 changed files with 309 additions and 311 deletions

View file

@ -20,7 +20,6 @@ UM.Dialog
height: minimumHeight
backgroundColor: UM.Theme.getColor("main_background")
margin: UM.Theme.getSize("default_margin").width
Flickable
{
@ -60,22 +59,22 @@ UM.Dialog
{
width: parent.width
height: childrenRect.height
spacing: UM.Theme.getSize("default_margin").height
spacing: UM.Theme.getSize("wide_margin").height
UM.Label
{
id: titleLabel
text: catalog.i18nc("@action:title", "Summary - Cura Project")
font: UM.Theme.getFont("large")
}
Column
{
width: parent.width
height: childrenRect.height
spacing: UM.Theme.getSize("default_margin").height
UM.Label
{
id: titleLabel
anchors.margins: UM.Theme.getSize("default_margin").height
text: catalog.i18nc("@action:title", "Summary - Cura Project")
font: UM.Theme.getFont("large")
}
}
leftPadding: UM.Theme.getSize("default_margin").width
rightPadding: UM.Theme.getSize("default_margin").width
WorkspaceSection
{
@ -260,7 +259,6 @@ UM.Dialog
}
}
comboboxTitle: catalog.i18nc("@action:label", "Open With")
comboboxTooltipText: catalog.i18nc("@info:tooltip", "How should the conflict in the profile be resolved?")
comboboxVisible: manager.qualityChangesConflict
combobox: Cura.ComboBox
@ -315,7 +313,6 @@ UM.Dialog
}
}
comboboxTitle: catalog.i18nc("@action:label", "Open With")
comboboxTooltipText: catalog.i18nc("@info:tooltip", "How should the conflict in the material be resolved?")
comboboxVisible: manager.materialConflict
@ -405,6 +402,7 @@ UM.Dialog
}
}
}
}
property bool warning: manager.missingPackages.length > 0

View file

@ -38,8 +38,7 @@ Item
id: comboboxLabel
anchors.top: parent.top
anchors.left: parent.left
anchors.bottomMargin: UM.Theme.getSize("default_margin").height
visible: comboboxVisible
visible: comboboxVisible && text != ""
text: ""
font: UM.Theme.getFont("default_bold")
}
@ -50,6 +49,7 @@ Item
width: parent.width
height: UM.Theme.getSize("button").height
anchors.top: comboboxLabel.bottom
anchors.topMargin: UM.Theme.getSize("default_margin").height
anchors.left: parent.left
sourceComponent: combobox
}