mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-13 05:39:17 +08:00
Combobox height/width was being resized by RowLayout causing it to be squished. Assigned a implicit width/height which is used instead of height/width.
CURA-8688
This commit is contained in:
parent
9f75b870a7
commit
c3abfec535
@ -91,10 +91,12 @@ UM.Dialog
|
|||||||
buttonSpacing: UM.Theme.getSize("thin_margin").width
|
buttonSpacing: UM.Theme.getSize("thin_margin").width
|
||||||
|
|
||||||
leftButtons: [
|
leftButtons: [
|
||||||
ComboBox
|
Cura.ComboBox
|
||||||
{
|
{
|
||||||
|
implicitHeight: UM.Theme.getSize("combobox_dialog").height
|
||||||
|
implicitWidth: UM.Theme.getSize("combobox_dialog").width
|
||||||
|
|
||||||
id: discardOrKeepProfileChangesDropDownButton
|
id: discardOrKeepProfileChangesDropDownButton
|
||||||
width: 300
|
|
||||||
textRole: "text"
|
textRole: "text"
|
||||||
|
|
||||||
model: ListModel
|
model: ListModel
|
||||||
|
@ -620,6 +620,7 @@
|
|||||||
"checkbox_label_padding": [0.5, 0.5],
|
"checkbox_label_padding": [0.5, 0.5],
|
||||||
|
|
||||||
"spinbox": [6.0, 3.0],
|
"spinbox": [6.0, 3.0],
|
||||||
|
"combobox_dialog": [14, 2],
|
||||||
|
|
||||||
"tooltip": [20.0, 10.0],
|
"tooltip": [20.0, 10.0],
|
||||||
"tooltip_margins": [1.0, 1.0],
|
"tooltip_margins": [1.0, 1.0],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user