~pete-woods/camera-app/handle-quit-signal

« back to all changes in this revision

Viewing changes to StopWatch.qml

  • Committer: Ugo Riboni
  • Date: 2013-07-30 09:24:35 UTC
  • mto: This revision was merged to the branch mainline in revision 180.
  • Revision ID: ugo.riboni@canonical.com-20130730092435-ud7lbu3qw49w35ht
Adjust the recording time display to match current design

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
    property int time: 0
22
22
    property alias elapsed: count.text
23
23
    property alias fontSize: count.fontSize
24
 
    property alias color: count.color
25
24
    property alias labelRotation: count.rotation
26
25
 
27
26
    height: labelRotation % 180 === 0 ? intern.totalLabelHeight : intern.totalLabelWidth
49
48
 
50
49
            return "%1%2:%3".arg(prefix).arg(intern.pad(minutes, 2)).arg(intern.pad(seconds, 2));
51
50
        }
52
 
        fontSize: "large"
 
51
        fontSize: "medium"
53
52
    }
54
53
 
55
54
    QtObject {