~andrew-haigh-b/cdts/whitelist

« back to all changes in this revision

Viewing changes to plainbox-gui/gui-ihv/qml/outline/TestSelectionButtons.qml

  • Committer: Daniel Manrique
  • Date: 2013-07-15 20:34:16 UTC
  • mfrom: (2230.2.5 ui_work)
  • Revision ID: roadmr@ubuntu.com-20130715203416-ej0fqrsdzo6755pl
Merged ui_work branch with more changes, by Julia Segal

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
 
34
34
 
35
35
    width: parent.width - units.gu(20)
36
 
    spacing: (parent.width - (140*3))/5  // width - buttons / 5 spaces
 
36
    spacing: (parent.width - (units.gu(18)*3))/3
37
37
 
38
38
    Button {
39
39
         id:selectButton
40
40
         text: i18n.tr("Select All")
41
41
         color: UbuntuColors.warmGrey
42
 
         width: units.gu(16)
 
42
         width: units.gu(18)
43
43
         onClicked: {
44
44
             bottombuttons.selectAll();
45
45
         }
48
48
         id: deselectButton
49
49
         text: i18n.tr("Deselect All")
50
50
         color: UbuntuColors.warmGrey
51
 
         width: units.gu(16)
 
51
         width: units.gu(18)
52
52
         onClicked:{
53
53
             bottombuttons.deselectAll();
54
54
         }
58
58
        id: startTesting
59
59
        text: i18n.tr("Start Testing")
60
60
        color: UbuntuColors.lightAubergine
61
 
        width: units.gu(16)
 
61
        width: units.gu(18)
62
62
        onClicked:{
63
63
            bottombuttons.startTesting();
64
64
        }