RSATom / QmlVlc

[ABANDONED] libvlc wrapper for Qt Quick 2/Qml
Other
139 stars 56 forks source link

set VlcVideoSurface element property z not work. #13

Closed kingctan closed 10 years ago

kingctan commented 10 years ago

for example:

VlcVideoSurface{
anchors.fill:parent
source:player
z:900
}

and the other rectangle:

Rectangle{
anchors.fill:parent
z:1000
color:"red"
opacity:0.8
}

we will see,the rectangle is under the video.

RSATom commented 10 years ago

hm, It's very strange... Ok, I'll look at evening.

kingctan commented 10 years ago

ok! Thanks a lot. -:)

RSATom commented 10 years ago

are VlcVideoSurface and Rectangle siblings? z order will work only if they have same parent.

kingctan commented 10 years ago

ok, I move these elements one by one,then z works now.

RSATom commented 10 years ago

glad to hear it :)