aboutsummaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qml/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'mobile-widgets/qml/main.qml')
-rw-r--r--mobile-widgets/qml/main.qml17
1 files changed, 13 insertions, 4 deletions
diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml
index 8a65f1ab9..2c5a5a3f2 100644
--- a/mobile-widgets/qml/main.qml
+++ b/mobile-widgets/qml/main.qml
@@ -600,10 +600,19 @@ if you have network connectivity and want to sync your data to cloud storage."),
*/
}
] // end actions
- Image {
- fillMode: Image.PreserveAspectFit
- source: "qrc:///icons/" + (subsurfaceTheme.currentTheme !== "" ? subsurfaceTheme.currentTheme : "Blue") + "_gps.svg"
- visible: locationServiceEnabled
+ Row {
+ spacing: Kirigami.Units.smallSpacing
+ Image {
+ id: ls_logo
+ fillMode: Image.PreserveAspectFit
+ source: "qrc:///icons/" + (subsurfaceTheme.currentTheme !== "" ? subsurfaceTheme.currentTheme : "Blue") + "_gps.svg"
+ visible: locationServiceEnabled
+ }
+ Text {
+ text: qsTr("Background location service active")
+ visible: locationServiceEnabled
+ anchors.verticalCenter: ls_logo.verticalCenter
+ }
}
}