Browse Source

Fix bug in monitor page

In commit b7fd75b2dd202f2516f9188e342eccc8a15ae6ab the component with id `printerTypeSelectorRow` was removed. As the `tabBar` element was anchored to this component the monitor page was broken. Fixed by anchoring to the component that was previously above `printerTypeSelectorRow`.

CURA-9665
c.lamboo 2 years ago
parent
commit
2440730e23
1 changed files with 1 additions and 1 deletions
  1. 1 1
      resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml

+ 1 - 1
resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml

@@ -40,7 +40,7 @@ Item
     UM.TabRow
     {
         id: tabBar
-        anchors.top: printerTypeSelectorRow.bottom
+        anchors.top: header.bottom
         anchors.topMargin: UM.Theme.getSize("default_margin").height
         visible: extrudersModel.count > 1