mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-19 12:47:49 -06:00
Fix qml warning spam
This commit is contained in:
parent
21a076aea4
commit
79ccccb1a1
1 changed files with 8 additions and 4 deletions
|
@ -174,10 +174,14 @@ Item
|
||||||
Cura.RadioButton
|
Cura.RadioButton
|
||||||
{
|
{
|
||||||
id: radioButton
|
id: radioButton
|
||||||
anchors.left: parent.left
|
anchors
|
||||||
anchors.leftMargin: UM.Theme.getSize("standard_list_lineheight").width
|
{
|
||||||
anchors.right: parent.right
|
left: parent !== null ? parent.left: undefined
|
||||||
anchors.rightMargin: UM.Theme.getSize("default_margin").width
|
leftMargin: UM.Theme.getSize("standard_list_lineheight").width
|
||||||
|
|
||||||
|
right: parent !== null ? parent.right: undefined
|
||||||
|
rightMargin: UM.Theme.getSize("default_margin").width
|
||||||
|
}
|
||||||
height: visible ? UM.Theme.getSize("standard_list_lineheight").height : 0
|
height: visible ? UM.Theme.getSize("standard_list_lineheight").height : 0
|
||||||
|
|
||||||
checked: ListView.view.currentIndex == index
|
checked: ListView.view.currentIndex == index
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue