~unity-team/ubuntu-settings-components/trunk

« back to all changes in this revision

Viewing changes to examples/OtherComponents.qml

  • Committer: Bileto Bot
  • Author(s): Albert Astals Cid
  • Date: 2016-08-09 23:00:16 UTC
  • mfrom: (155.2.1 ubuntu-settings-components)
  • Revision ID: ci-train-bot@canonical.com-20160809230016-cwgog0n28bbri9ux
Remove StatusIcon, we've moved to SDK Icon

Approved by: Andrea Cimitan, Unity8 CI Bot

Show diffs side-by-side

added added

removed removed

Lines of Context:
225
225
                    }
226
226
                }
227
227
            }
228
 
 
229
 
            Row {
230
 
                anchors {
231
 
                    left: parent.left
232
 
                    right: parent.right
233
 
                }
234
 
 
235
 
                spacing: units.gu(1)
236
 
 
237
 
                Label {
238
 
                    text: "StatusIcon"
239
 
                    anchors.verticalCenter: parent.verticalCenter
240
 
                }
241
 
 
242
 
                StatusIcon {
243
 
                    height: units.gu(5)
244
 
                    source: "image://theme/gps"
245
 
                }
246
 
 
247
 
                StatusIcon {
248
 
                    height: units.gu(5)
249
 
                    source: "image://theme/battery-caution"
250
 
                }
251
 
 
252
 
                StatusIcon {
253
 
                    height: units.gu(5)
254
 
                    source: "image://theme/missing,gpm-battery-000-charging"
255
 
                }
256
 
            }
257
228
        }
258
229
    }
259
230
}