From 2440730e23cfc7d5f7b401a59b5b636556200843 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Wed, 21 Sep 2022 11:23:05 +0200 Subject: [PATCH] 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 --- resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml b/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml index f0d09516b9..d1bf323e7d 100644 --- a/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml +++ b/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