~zeller-benjamin/ubuntu-ui-toolkit/qrcify3

« back to all changes in this revision

Viewing changes to src/Ubuntu/Components/ListItems/1.3/SingleControl.qml

  • Committer: Benjamin Zeller
  • Date: 2015-09-10 08:43:12 UTC
  • mfrom: (1585.1.2 staging)
  • Revision ID: benjamin.zeller@canonical.com-20150910084312-6eh8n2729jpslgmb
Merge staging

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
 
55
55
    /*! \internal */
56
56
    onClicked: if (control && control.enabled && control.hasOwnProperty("clicked")) control.clicked()
57
 
    pressed: __mouseArea.pressed || (control && control.hasOwnProperty("pressed") && control.pressed)
 
57
    /*! \internal */
 
58
    property bool pressed: __mouseArea.pressed || (control && control.hasOwnProperty("pressed") && control.pressed)
58
59
    /*! \internal */
59
60
    onPressedChanged: if (control && control.enabled && control.hasOwnProperty("pressed")) control.pressed = singleControlListItem.pressed
60
61