mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-21 05:37:50 -06:00
Add margins to buttons and progressBar so they align
CURA-3856
This commit is contained in:
parent
319559740d
commit
8776cedd27
1 changed files with 4 additions and 1 deletions
|
@ -33,6 +33,7 @@ UM.Dialog
|
||||||
text: catalog.i18nc("@action:button", "Refresh")
|
text: catalog.i18nc("@action:button", "Refresh")
|
||||||
onClicked: manager.requestPluginList()
|
onClicked: manager.requestPluginList()
|
||||||
anchors.right: parent.right
|
anchors.right: parent.right
|
||||||
|
anchors.rightMargin: -3
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
ScrollView
|
ScrollView
|
||||||
|
@ -68,7 +69,8 @@ UM.Dialog
|
||||||
anchors.left:parent.left
|
anchors.left:parent.left
|
||||||
anchors.right: closeButton.left
|
anchors.right: closeButton.left
|
||||||
anchors.rightMargin: UM.Theme.getSize("default_margin").width
|
anchors.rightMargin: UM.Theme.getSize("default_margin").width
|
||||||
height: 10
|
anchors.bottomMargin: 4
|
||||||
|
height: UM.Theme.getSize("default_margin").height
|
||||||
value: manager.downloadProgress
|
value: manager.downloadProgress
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -80,6 +82,7 @@ UM.Dialog
|
||||||
onClicked: base.close()
|
onClicked: base.close()
|
||||||
anchors.bottom: parent.bottom
|
anchors.bottom: parent.bottom
|
||||||
anchors.right: parent.right
|
anchors.right: parent.right
|
||||||
|
anchors.rightMargin: -3
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue