Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Prado Gesto <d.pradogesto@ultimaker.com>2018-10-18 17:33:13 +0300
committerDiego Prado Gesto <d.pradogesto@ultimaker.com>2018-10-18 17:33:13 +0300
commit1cc7e0e586604ddf16b2931e1bcffbadb53c7f80 (patch)
treee1af16c2df7dc2aaf2fa330834ee61160a4bb966 /plugins/PrepareStage/PrepareMenu.qml
parentfdfa81b2b8cf69d78897961f6985bf6ed8b941e0 (diff)
Set the height of the stage menu in the theme instead of hardcoded.
I also adjusted a bit the design to fulfill the requirments from UX/UI team. Contributes to CURA-5772.
Diffstat (limited to 'plugins/PrepareStage/PrepareMenu.qml')
-rw-r--r--plugins/PrepareStage/PrepareMenu.qml8
1 files changed, 7 insertions, 1 deletions
diff --git a/plugins/PrepareStage/PrepareMenu.qml b/plugins/PrepareStage/PrepareMenu.qml
index 208e7d18df..10ff0b2310 100644
--- a/plugins/PrepareStage/PrepareMenu.qml
+++ b/plugins/PrepareStage/PrepareMenu.qml
@@ -21,7 +21,6 @@ Item
Row
{
- spacing: UM.Theme.getSize("default_margin").width
anchors.horizontalCenter: parent.horizontalCenter
Button
@@ -34,6 +33,13 @@ Item
action: Cura.Actions.open
}
+ Item
+ {
+ id: spacing
+ width: UM.Theme.getSize("default_margin").width
+ height: parent.height
+ }
+
Cura.MachineAndConfigurationSelector
{
}