~faenil/ubuntu-ui-toolkit/update_import_statement_docs

« back to all changes in this revision

Viewing changes to examples/ubuntu-ui-toolkit-gallery/Label.qml

  • Committer: Tarmac
  • Author(s): Tim Peeters
  • Date: 2015-12-22 12:33:12 UTC
  • mfrom: (1774.1.9 fontSize)
  • Revision ID: tarmac-20151222123312-ypz9ivkazf7xhgor
Update font sizes. Fixes: https://bugs.launchpad.net/bugs/1528263.

Approved by PS Jenkins bot, Zsombor Egri.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
 
29
29
            Label {
30
30
                textSize: Label.XxSmall
31
 
                text: "xx-small"
 
31
                text: "Label.XxSmall"
32
32
            }
33
33
            Label {
34
34
                textSize: Label.XSmall
35
 
                text: "x-small"
 
35
                text: "Label.XSmall"
36
36
            }
37
37
            Label {
38
38
                textSize: Label.Small
39
 
                text: "small"
 
39
                text: "Label.Small"
40
40
            }
41
41
            Label {
42
42
                textSize: Label.Medium
43
 
                text: "medium"
 
43
                text: "Label.Medium"
44
44
            }
45
45
            Label {
46
46
                textSize: Label.Large
47
 
                text: "large"
 
47
                text: "Label.Large"
48
48
            }
49
49
            Label {
50
50
                textSize: Label.XLarge
51
 
                text: "x-large"
 
51
                text: "Label.XLarge"
52
52
            }
53
53
        }
54
54
    }