mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-25 11:51:41 -07:00
Give machine selector minimum width so it displays correctly on smaller screens.
CURA-9514
This commit is contained in:
parent
eea8935741
commit
721f63b0d1
1 changed files with 1 additions and 1 deletions
|
|
@ -192,7 +192,7 @@ Cura.ExpandablePopup
|
||||||
contentItem: Item
|
contentItem: Item
|
||||||
{
|
{
|
||||||
id: popup
|
id: popup
|
||||||
implicitWidth: machineSelector.width
|
implicitWidth: Math.max(machineSelector.width, UM.Theme.getSize("machine_selector_widget_content").width)
|
||||||
implicitHeight: Math.min(machineSelectorList.contentHeight + separator.height + buttonRow.height, UM.Theme.getSize("machine_selector_widget_content").height) //Maximum height is the theme entry.
|
implicitHeight: Math.min(machineSelectorList.contentHeight + separator.height + buttonRow.height, UM.Theme.getSize("machine_selector_widget_content").height) //Maximum height is the theme entry.
|
||||||
MachineSelectorList
|
MachineSelectorList
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue