We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 675bad6 commit b23eb9bCopy full SHA for b23eb9b
1 file changed
resources/qml/SidebarFooter.qml
@@ -52,6 +52,17 @@ Cura.RoundedRectangle
52
onLoaded:
53
{
54
actionPanelWidget.updateHasPreviewButton();
55
+
56
+ // change left anchor of the time and cost information panel
57
+ var actionPanelRect = actionPanelWidget.children[0];
58
+ if(actionPanelRect.children[0].item != null && actionPanelRect.children[0].item.children[0] != null)
59
+ {
60
+ var timeAndCostsInformation = actionPanelRect.children[0].item.children[0].children[1];
61
+ if (timeAndCostsInformation != undefined)
62
63
+ timeAndCostsInformation.anchors.leftMargin = Qt.binding(function() { return -actionPanelWidget.children[1].width - UM.Theme.getSize("thin_margin").width });
64
+ }
65
66
}
67
68
0 commit comments