View Single Post
Posts: 291 | Thanked: 398 times | Joined on Jan 2011 @ USA
#252
@Marxian

Adding a timer to "No videos found" text seems to solve the problem. Work perfectly now!
Code:
	 Text {
		id: nvfText
            	anchors.centerIn: dimmer
            	font.pixelSize: largeFontSize
            	font.bold: true
            	color: "grey"
            	horizontalAlignment: Text.AlignHCenter
            	verticalAlignment: Text.AlignVCenter
		text: "No videos found"
		visible: false		
		Timer { interval: 1000; running: true; onTriggered: nvfText.visible = (videoListModel.status == XmlListModel.Ready) && (videoList.count == 0) }        		
        }
 

The Following User Says Thank You to khuong For This Useful Post: