Browse Source

Added some missing widths en heights

GammaRay complained about some objects not having a size
Jaime van Kessel 7 years ago
parent
commit
a7e1017aa2
3 changed files with 7 additions and 2 deletions
  1. 1 0
      resources/qml/JobSpecs.qml
  2. 4 1
      resources/qml/Toolbar.qml
  3. 2 1
      resources/qml/Topbar.qml

+ 1 - 0
resources/qml/JobSpecs.qml

@@ -18,6 +18,7 @@ Item {
     UM.I18nCatalog { id: catalog; name:"cura"}
 
     height: childrenRect.height
+    width: childrenRect.width
 
     Connections
     {

+ 4 - 1
resources/qml/Toolbar.qml

@@ -30,7 +30,8 @@ Item
             id: repeat
 
             model: UM.ToolModel { }
-
+            width: childrenRect.width
+            height: childrenRect.height
             Button
             {
                 text: model.name
@@ -72,6 +73,8 @@ Item
         Repeater
         {
             id: extruders
+            width: childrenRect.width
+            height: childrenRect.height
             property var _model: Cura.ExtrudersModel { id: extrudersModel }
             model: _model.items.length > 1 ? _model : 0
             ExtruderButton { extruder: model }

+ 2 - 1
resources/qml/Topbar.qml

@@ -279,7 +279,8 @@ Rectangle
 
         property var buttonTarget: Qt.point(viewModeButton.x + viewModeButton.width / 2, viewModeButton.y + viewModeButton.height / 2)
 
-        height: childrenRect.height;
+        height: childrenRect.height
+        width: childrenRect.width
 
         source: UM.ActiveView.valid ? UM.ActiveView.activeViewPanel : "";
     }