~laney/ubuntu-system-settings/upower0.99

« back to all changes in this revision

Viewing changes to plugins/cellular/PageComponent.qml

  • Committer: CI bot
  • Author(s): jonas-drange
  • Date: 2014-08-12 19:22:48 UTC
  • mfrom: (718.6.31 default-sims)
  • Revision ID: ps-jenkins@lists.canonical.com-20140812192248-zv33l8vlf3pdokrp
[cellular] uis for default SIM settings 
Approved by: Ken VanDine, PS Jenkins bot

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
                    simTwoLoader.setSource("Components/Sim.qml", {
61
61
                        path: p
62
62
                    });
 
63
                    defaultSimLoader.source = "Components/DefaultSim.qml";
63
64
                }
64
65
            }
65
66
        }
182
183
                visible: showAllUI
183
184
            }
184
185
 
 
186
            ListItem.Divider {}
 
187
 
185
188
            SimEditor {
186
189
                visible: root.state === "dualSim"
187
190
                objectName: "simEditor"
188
191
            }
 
192
 
 
193
            ListItem.Divider {}
 
194
 
 
195
            Loader {
 
196
                id: defaultSimLoader
 
197
                anchors.left: parent.left
 
198
                anchors.right: parent.right
 
199
            }
189
200
        }
190
201
    }
191
202