~mzanetti/unity8/launcher-follow-unity-api

« back to all changes in this revision

Viewing changes to Bottombar/HudButton.qml

  • Committer: Michael Zanetti
  • Date: 2013-06-26 09:26:51 UTC
  • mfrom: (22.1.24 unity)
  • Revision ID: michael.zanetti@canonical.com-20130626092651-ku85xmvlt2pjgypx
merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
Item {
21
21
    id: item
22
22
 
 
23
    property bool mouseOver
 
24
 
23
25
    property int bottomMargin: units.gu(2)
24
 
    property bool mouseOver: contains(mouse)
25
26
 
26
 
    property point mouse: Qt.point(-1,-1)
 
27
    signal clicked()
27
28
 
28
29
    readonly property real scaleOnMouseOver: 1.2
29
30