~laney/ubuntu-system-settings/background-no-toolbar-close

« back to all changes in this revision

Viewing changes to plugins/cellular/ChooseCarrier.qml

  • Committer: CI bot
  • Author(s): Iain Lane
  • Date: 2014-02-18 21:36:48 UTC
  • mfrom: (618.1.8 manual-network)
  • Revision ID: ps-jenkins@lists.canonical.com-20140218213648-hhfi2sj9kvhfarap
Add some initial AP tests for manual selection of cellular network. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 
27
27
ItemPage {
28
28
    title: i18n.tr("Carrier")
 
29
    objectName: "chooseCarrierPage"
 
30
 
29
31
    property var netReg
30
32
    property variant operators: netReg.operators
31
33
    property bool scanning: netReg.scanning
55
57
 
56
58
   ListItem.ItemSelector {
57
59
        id: carrierSelector
 
60
        objectName: "carrierSelector"
58
61
        expanded: true
59
62
        /* FIXME: This is disabled since it is currently a
60
63
         * read-only setting
71
74
    ListItem.SingleControl {
72
75
        anchors.bottom: parent.bottom
73
76
        control: Button {
 
77
            objectName: "refreshButton"
74
78
            width: parent.width - units.gu(4)
75
79
            text: i18n.tr("Refresh")
76
80
            onTriggered: netReg.scan()