Fix warning about null width

This commit is contained in:
dalto
2022-03-07 09:58:58 -06:00
parent 7fec010148
commit 14c7a1b58f
+1 -1
View File
@@ -17,7 +17,7 @@ ApplicationWindow {
model: packageModel
delegate: Item {
property bool expanded: lvPackages.isSectionExpanded( model.category )
width: parent.width - sbListview.width
width: lvPackages.width - sbListview.width
implicitHeight: expanded ? check.implicitHeight : 0
Row {