From b5940a54f4e9951433660570d1fdd903d5a36d6c Mon Sep 17 00:00:00 2001 From: Saumya Jain Date: Thu, 14 Mar 2024 16:17:24 +0100 Subject: [PATCH] fixing size of drop down CURA-11700 --- plugins/3MFReader/WorkspaceDialog.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/3MFReader/WorkspaceDialog.qml b/plugins/3MFReader/WorkspaceDialog.qml index e617764700..acc4ced404 100644 --- a/plugins/3MFReader/WorkspaceDialog.qml +++ b/plugins/3MFReader/WorkspaceDialog.qml @@ -112,8 +112,8 @@ UM.Dialog anchors.topMargin: UM.Theme.getSize("default_margin").width * 3 anchors.right: parent.right anchors.rightMargin: UM.Theme.getSize("default_margin").width - width: UM.Theme.getSize("machine_selector_widget").width - height: UM.Theme.getSize("machine_selector_widget").height + width: Math.round(parent.width / 2.5) + height: UM.Theme.getSize("button").height machineListModel: manager.updatableMachinesModel machineName: manager.machineName