Profile compare-and-save: Add (more) explanatory text(s).

part of CURA-9347
This commit is contained in:
Remco Burema 2022-11-30 19:54:41 +01:00
parent 8f65af61e5
commit 6f651b922a
3 changed files with 45 additions and 2 deletions

View file

@ -28,7 +28,7 @@ UM.Dialog
title: dialogTitle
backgroundColor: UM.Theme.getColor("main_background")
minimumWidth: UM.Theme.getSize("small_popup_dialog").width
minimumHeight: UM.Theme.getSize("small_popup_dialog").height
minimumHeight: UM.Theme.getSize("small_popup_dialog").height + extraInfoHolder.height
width: minimumWidth
height: minimumHeight
@ -63,8 +63,24 @@ UM.Dialog
onTextChanged: base.textChanged(text)
}
// spacer
Rectangle
{
color: base.backgroundColor
height: UM.Theme.getSize("wide_margin").height
width: height
}
Row
{
id: extraInfoHolder
anchors
{
left: parent.left
right: parent.right
margins: UM.Theme.getSize("default_margin").height
}
spacing: UM.Theme.getSize("default_margin").height
children: extraInfo
}