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

« back to all changes in this revision

Viewing changes to MonthComponent.qml

  • Committer: Kunal Parmar
  • Date: 2013-09-28 09:37:52 UTC
  • mto: This revision was merged to the branch mainline in revision 153.
  • Revision ID: pkunal.parmar@gmail.com-20130928093752-6hhmsea2xmtns5uk
Background added to day labels

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
                }
62
62
            }
63
63
 
64
 
            Row{
65
 
                id: dayLabelRow
 
64
            Item {
66
65
                width: parent.width
67
 
                anchors.horizontalCenter: parent.horizontalCenter
68
 
 
69
 
                Repeater{
70
 
                    id: dayLabelRepeater
71
 
                    model:7
72
 
                    delegate: dafaultDayLabelComponent
 
66
                height: dayLabelRow.height + units.gu(1)
 
67
 
 
68
                DayHeaderBackground{}
 
69
 
 
70
                Row{
 
71
                    id: dayLabelRow
 
72
                    width: parent.width
 
73
                    anchors.horizontalCenter: parent.horizontalCenter
 
74
                    anchors.verticalCenter: parent.verticalCenter
 
75
 
 
76
                    Repeater{
 
77
                        id: dayLabelRepeater
 
78
                        model:7
 
79
                        delegate: dafaultDayLabelComponent
 
80
                    }
73
81
                }
74
82
            }
75
83