mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-02 20:52:20 -07: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
2 changed files with 5 additions and 2 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue