Remove welcome_pages_default_margin theme entry

Use the wide margin instead. It's practically the same, nobody is going to notice. It still looks spacey and nice, and it's more consistent with the rest of the interface.
We had previously agreed that we will not make any new widget-specific theme entries any more.

Contributes to issue CURA-6057.
This commit is contained in:
Ghostkeeper 2019-03-29 13:36:05 +01:00
parent 129c1ab3d4
commit 5028290e0d
No known key found for this signature in database
GPG key ID: 86BEF881AE2CF276
9 changed files with 27 additions and 29 deletions

View file

@ -15,13 +15,13 @@ Item
{
UM.I18nCatalog { id: catalog; name: "cura" }
anchors.margins: UM.Theme.getSize("welcome_pages_default_margin").width
anchors.margins: UM.Theme.getSize("wide_margin").width
Column // Arrange the items vertically and put everything in the center
{
anchors.centerIn: parent
width: parent.width
spacing: UM.Theme.getSize("welcome_pages_default_margin").height
spacing: UM.Theme.getSize("wide_margin").height
Label
{
@ -55,7 +55,7 @@ Item
{
id: getStartedButton
anchors.horizontalCenter: parent.horizontalCenter
anchors.margins: UM.Theme.getSize("welcome_pages_default_margin").width
anchors.margins: UM.Theme.getSize("wide_margin").width
text: catalog.i18nc("@button", "Get started")
onClicked: base.showNextPage()
}