~ubuntu-branches/ubuntu/saucy/ubuntu-ui-toolkit/saucy

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release, tpeeters, iftikhar.ahmad at canonical, Ubuntu daily release
  • Date: 2013-08-30 12:44:49 UTC
  • mfrom: (1.1.52)
  • Revision ID: package-import@ubuntu.com-20130830124449-5e82aofeuxy30z02
Tags: 0.1.46+13.10.20130830.1-0ubuntu1
[ tpeeters ]
* Quick fix, completely untested. Might mess up apps with list items
  that do not use popovers. Have a look to see if you can use this
  code and it doesn't break anything. (LP: #1205094)
* Clean toolbar code by removing deprecated properties and updating
  tests.

[ iftikhar.ahmad@canonical.com ]
* ajusted the buttons laytout to make it fit to phone screen size.
  https://bugs.launchpad.net/ubuntu-ui-toolkit/+bug/1218749 . (LP:
  #1218749)

[ Ubuntu daily release ]
* Automatic snapshot from revision 731

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
                objectName: "button_iconsource"
48
48
                iconSource: "call.png"
49
49
            }
 
50
        }
 
51
 
 
52
        TemplateRow {
 
53
            title: i18n.tr("Icon+Text")
50
54
 
51
55
            Button {
52
56
                objectName: "button_iconsource_right_text"
53
 
                width: units.gu(15)
 
57
                width: units.gu(10)
54
58
                text: i18n.tr("Call")
55
59
                iconSource: "call.png"
56
60
                iconPosition: "right"
58
62
 
59
63
            Button {
60
64
                objectName: "button_iconsource_left_text"
61
 
                width: units.gu(15)
 
65
                width: units.gu(10)
62
66
                text: i18n.tr("Call")
63
67
                iconSource: "call.png"
64
68
            }