Fixing issue with margins being shown despite an object not being displayed.
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
43e41a5da4
commit
45fef876ec
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ ScrollView {
|
||||||
property var editingRows: []
|
property var editingRows: []
|
||||||
model: Modules.Objects.currentObjects[objType]
|
model: Modules.Objects.currentObjects[objType]
|
||||||
width: objectsListView.width
|
width: objectsListView.width
|
||||||
height: contentItem.childrenRect.height + 10
|
height: contentItem.childrenRect.height + (visible ? 10 : 0)
|
||||||
visible: model != undefined && model.length > 0
|
visible: model != undefined && model.length > 0
|
||||||
interactive: false
|
interactive: false
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue