mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-12 18:29:04 +08:00
Some additional styling fixes for the settings pane
This commit is contained in:
parent
19754599b7
commit
35c6dbb40c
@ -41,25 +41,32 @@ Rectangle {
|
|||||||
|
|
||||||
Item {
|
Item {
|
||||||
width: parent.width;
|
width: parent.width;
|
||||||
height: childrenRect.height;
|
height: 24;
|
||||||
|
|
||||||
Label { anchors.right: parent.horizontalCenter; text: "Material"; width: parent.width / 2; }
|
Row {
|
||||||
ComboBox {
|
anchors.fill: parent;
|
||||||
anchors.left: parent.horizontalCenter;
|
|
||||||
width: parent.width / 2;
|
Label { text: "Material"; horizontalAlignment: Text.AlignRight; width: parent.width * 0.6; }
|
||||||
model: ListModel {
|
ComboBox {
|
||||||
ListElement { text: "PLA"; }
|
width: parent.width * 0.4;
|
||||||
ListElement { text: "ABS"; }
|
model: ListModel {
|
||||||
|
ListElement { text: "PLA"; }
|
||||||
|
ListElement { text: "ABS"; }
|
||||||
|
}
|
||||||
|
style: ComboBoxStyle { }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
width: parent.width;
|
width: parent.width;
|
||||||
height: childrenRect.height;
|
height: 24;
|
||||||
|
|
||||||
Label { anchors.right: parent.horizontalCenter; text: "Time"; width: parent.width / 2; }
|
Row {
|
||||||
Label { anchors.left: parent.horizontalCenter; text: "10:10"; width: parent.width / 2; }
|
anchors.fill: parent;
|
||||||
|
Label { text: "Time"; width: base.width * 0.6; horizontalAlignment: Text.AlignRight; }
|
||||||
|
Label { text: "10:10"; width: base.width * 0.4; horizontalAlignment: Text.AlignLeft; }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Rectangle { color: "black"; height: 1; width: parent.width; }
|
Rectangle { color: "black"; height: 1; width: parent.width; }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user