Comment 4 for bug 1371509

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

code to reproduce the issue below. Save the attached select@18.png in the same directory as this program.

import QtQuick 2.2
import Ubuntu.Components 1.1

Rectangle {
    color: "white"
    width: 400
    height: 400

    Icon {
        width: 50
        height: 50
        anchors.centerIn: parent

// name: "select" // works
// source: "select@18.png" // works
        source: "select.png" // breaks
    }
}