diff options
Diffstat (limited to 'mobile-widgets/qml/main.qml')
-rw-r--r-- | mobile-widgets/qml/main.qml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml index 03d7238c3..f74b28b71 100644 --- a/mobile-widgets/qml/main.qml +++ b/mobile-widgets/qml/main.qml @@ -25,6 +25,7 @@ Kirigami.ApplicationWindow { property alias notificationText: manager.notificationText property alias syncToCloud: manager.syncToCloud property alias locationServiceEnabled: manager.locationServiceEnabled + property alias pluggedInDeviceName: manager.pluggedInDeviceName property alias showPin: prefs.showPin onNotificationTextChanged: { if (notificationText != "") { @@ -610,6 +611,10 @@ if you have network connectivity and want to sync your data to cloud storage."), visible: false } + onPluggedInDeviceNameChanged: { + console.log("Show download page for device " + pluggedInDeviceName); + } + Component.onCompleted: { rootItem.visible = true diveList.opacity = 1 |