aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qquickflipable/data/flipable-abort.qml
blob: 90fc03a5f951f31a266eab97792654b949d89adf (plain)
1
2
3
4
5
6
7
8
9
10
import QtQuick 2.0

Rectangle {
    Flipable {
        id: flipable
    }
    Rectangle {
        visible: flipable.side == Flipable.Front
    }
}