Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjoeydelarago <joeydelarago@gmail.com>2022-08-23 16:56:50 +0300
committerjoeydelarago <joeydelarago@gmail.com>2022-08-23 16:56:50 +0300
commite541890c07eaae7dd6d3cf5fbf358b0225526b3f (patch)
tree08753fc0ad49c15e800237514a8fef245ce7665a
parent035fb27ab07079e6996171db2d0c387c0babb2f1 (diff)
Fix drop down not dynamically resizing width
CURA-9514
-rw-r--r--resources/qml/PrinterSelector/MachineSelector.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/PrinterSelector/MachineSelector.qml b/resources/qml/PrinterSelector/MachineSelector.qml
index 77cd2be409..09ca1316be 100644
--- a/resources/qml/PrinterSelector/MachineSelector.qml
+++ b/resources/qml/PrinterSelector/MachineSelector.qml
@@ -192,7 +192,7 @@ Cura.ExpandablePopup
contentItem: Item
{
id: popup
- implicitWidth: UM.Theme.getSize("machine_selector_widget_content").width
+ implicitWidth: machineSelector.width
implicitHeight: Math.min(machineSelectorList.contentHeight + separator.height + buttonRow.height, UM.Theme.getSize("machine_selector_widget_content").height) //Maximum height is the theme entry.
MachineSelectorList
{