Comment 2 for bug 1227783

Revision history for this message
Tim Peeters (tpeeters) wrote :

I wrote a small test-program (it does not reproduce the bug on my laptop, perhaps the images are too small):

import QtQuick 2.0
import Ubuntu.Components 0.1

Rectangle {
    color: "green"
    width: 600
    height: 600

    CrossFadeImage {
        id: crossFader
        anchors {
            fill: parent
            margins: 20
        }
        source: "/home/tim/Pictures/IMG_7001.jpg"

        MouseArea {
            anchors.fill: parent
            onClicked: crossFader.source = "/home/tim/Pictures/IMG_7003.jpg"
        }
    }
}