summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeimage/data/aspectratio.qml
blob: bcca59bee4468bb74463acc752fd1867ece77e09 (plain)
1
2
3
4
5
6
7
8
9
10
import QtQuick 1.0

Image {
    property int widthChange: 0
    property int heightChange: 0
    source: "heart.png"
    fillMode: Image.PreserveAspectFit;
    onWidthChanged: widthChange += 1
    onHeightChanged: heightChange += 1
}