~mzanetti/unity8/fix-1648251

« back to all changes in this revision

Viewing changes to tests/plugins/Dash/cardcreator/8.res

  • Committer: Michael Zanetti
  • Date: 2016-10-13 11:02:11 UTC
  • mfrom: (2525.1.132 unity8)
  • Revision ID: michael.zanetti@canonical.com-20161013110211-tj2gly2dxaqj5t2e
merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
                                objectName: "backgroundLoader"; 
17
17
                                anchors.fill: parent; 
18
18
                                asynchronous: true;
19
 
                                visible: status == Loader.Ready; 
 
19
                                visible: status === Loader.Ready;
20
20
                                sourceComponent: UbuntuShape { 
21
21
                                    objectName: "background"; 
22
22
                                    radius: "medium"; 
49
49
                                    } 
50
50
                                } 
51
51
                            }
52
 
readonly property size artShapeSize: Qt.size(-1, -1);
53
52
readonly property int headerHeight: row.height;
54
53
Row { 
55
54
                        id: row; 
96
95
 
97
96
                                ] 
98
97
                    }
99
 
UbuntuShape { 
100
 
    id: touchdown;
101
 
    objectName: "touchdown";
 
98
Loader {
 
99
    active: root.pressed;
102
100
    anchors { fill: backgroundLoader }
103
 
    visible: root.pressed;
104
 
    radius: "medium";
105
 
    borderSource: "radius_pressed.sci"
 
101
    sourceComponent: UbuntuShape {
 
102
        objectName: "touchdown";
 
103
        anchors.fill: parent;
 
104
        radius: "medium";
 
105
        borderSource: "radius_pressed.sci"
 
106
    }
106
107
}
107
108
implicitHeight: row.y + row.height + units.gu(1);
108
109
}