Prevent error outputs when loader takes a bit of time
This commit is contained in:
parent
80e33f9712
commit
d49fae0776
1 changed files with 1 additions and 1 deletions
|
|
@ -11,7 +11,7 @@ ListItem {
|
|||
right: parent.right
|
||||
}
|
||||
|
||||
contentHeight: loader.item.height
|
||||
contentHeight: loader.item ? loader.item.height : 0
|
||||
|
||||
Loader {
|
||||
id: loader
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue