~ubuntu-branches/ubuntu/raring/kde-runtime/raring-proposed

« back to all changes in this revision

Viewing changes to plasma/declarativeimports/plasmacomponents/qml/ListItem.qml

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2013-01-18 15:03:56 UTC
  • mfrom: (1.1.22)
  • Revision ID: package-import@ubuntu.com-20130118150356-dpuwyqik01o2sk0i
Tags: 4:4.9.98-0ubuntu1
* Remove kde-runtime alternate recommend on libcanberra-gstreamer,
  libcanberra-gstreamer uses gstreamer1.0 which much of kde still uses
  gstreamer0.10
* New upstream release candidate

Show diffs side-by-side

added added

removed removed

Lines of Context:
89
89
        prefix: "normal"
90
90
 
91
91
        anchors.fill: parent
92
 
        visible: listItem.ListView && listItem.ListView.view.highlight === null
 
92
        visible: listItem.ListView.view ? listItem.ListView.view.highlight === null : false
93
93
        opacity: itemMouse.containsMouse && !itemMouse.pressed ? 0.5 : 1
94
94
        Component.onCompleted: {
95
95
            prefix = (listItem.sectionDelegate ? "section" : (listItem.checked ? "pressed" : "normal"))