Merge pull request #246 from monich/placeholderImage
Fixed invalid reference
This commit is contained in:
commit
c10819b12e
1 changed files with 1 additions and 3 deletions
|
@ -153,7 +153,7 @@ Item {
|
||||||
asynchronous: true
|
asynchronous: true
|
||||||
visible: status === Image.Ready ? true : false
|
visible: status === Image.Ready ? true : false
|
||||||
layer.enabled: videoMessageComponent.highlighted
|
layer.enabled: videoMessageComponent.highlighted
|
||||||
layer.effect: PressEffect { source: singleImage }
|
layer.effect: PressEffect { source: placeholderImage }
|
||||||
}
|
}
|
||||||
|
|
||||||
BackgroundImage {
|
BackgroundImage {
|
||||||
|
@ -161,7 +161,6 @@ Item {
|
||||||
}
|
}
|
||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
id: placeholderBackground
|
|
||||||
color: "black"
|
color: "black"
|
||||||
opacity: 0.3
|
opacity: 0.3
|
||||||
height: parent.height
|
height: parent.height
|
||||||
|
@ -241,7 +240,6 @@ Item {
|
||||||
}
|
}
|
||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
id: videoErrorShade
|
|
||||||
width: parent.width
|
width: parent.width
|
||||||
height: parent.height
|
height: parent.height
|
||||||
color: "lightgrey"
|
color: "lightgrey"
|
||||||
|
|
Loading…
Reference in a new issue