~pkunal-parmar/ubuntu-calendar-app/RecurranceField

« back to all changes in this revision

Viewing changes to DayComponent.qml

  • Committer: Kunal Parmar
  • Date: 2013-09-03 23:46:17 UTC
  • mfrom: (106 trunk)
  • mto: This revision was merged to the branch mainline in revision 108.
  • Revision ID: pkunal.parmar@gmail.com-20130903234617-jvsxsf9whrl0m6mx
Trunk code merged

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
    property var day: new Date()
11
11
    property int weekWidth:0;
12
12
 
13
 
    contentHeight: timeLineColumn.height + units.gu(3)
 
13
    contentHeight: timeLineColumn.height
14
14
    contentWidth: width
15
15
 
16
16
    clip: true
48
48
    TimeLineBackground{
49
49
        id: timeLineColumn
50
50
        anchors.top: parent.top
51
 
        anchors.topMargin: units.gu(3)
52
51
        width: parent.width
53
52
    }
54
53
 
59
58
        width: timeLineColumn.width
60
59
        height: timeLineColumn.height
61
60
        anchors.top: parent.top
62
 
        anchors.topMargin: units.gu(3)
63
61
        delegate: infoBubbleComponent
64
62
        day: timeLineView.day
65
63
    }