~mterry/unity8/power-button-on-lock

« back to all changes in this revision

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

  • Committer: Michael Terry
  • Date: 2014-11-24 15:25:42 UTC
  • mfrom: (1368.1.82 unity8)
  • Revision ID: michael.terry@canonical.com-20141124152542-5cysva8ds3qfula6
MergeĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
                property bool asynchronous: true; 
14
14
                property bool showHeader: true; 
15
15
                implicitWidth: childrenRect.width; 
 
16
                enabled: root.template == null ? true : (root.template["non-interactive"] !== undefined ? !root.template["non-interactive"] : true);
 
17
 
16
18
onArtShapeBorderSourceChanged: { if (artShapeBorderSource !== undefined && artShapeLoader.item) artShapeLoader.item.borderSource = artShapeBorderSource; } 
17
19
readonly property size artShapeSize: artShapeLoader.item ? Qt.size(artShapeLoader.item.width, artShapeLoader.item.height) : Qt.size(-1, -1);
18
20
Item  { 
143
145
    id: touchdown; 
144
146
    objectName: "touchdown"; 
145
147
    anchors { fill: artShapeHolder } 
146
 
    visible: root.pressed; 
 
148
    visible: root.pressed;
147
149
    radius: "medium"; 
148
150
    borderSource: "radius_pressed.sci" 
149
151
}