Browse Source

Fix drop down not dynamically resizing width

CURA-9514
joeydelarago 2 years ago
parent
commit
e541890c07
1 changed files with 1 additions and 1 deletions
  1. 1 1
      resources/qml/PrinterSelector/MachineSelector.qml

+ 1 - 1
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
         {