mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-20 21:27:50 -06:00
Profile compare-and-save: Add (more) explanatory text(s).
part of CURA-9347
This commit is contained in:
parent
8f65af61e5
commit
6f651b922a
3 changed files with 45 additions and 2 deletions
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue