diff options
Diffstat (limited to 'mobile-widgets')
-rw-r--r-- | mobile-widgets/qml/main.qml | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml index 2ac521ec4..fbaba37d5 100644 --- a/mobile-widgets/qml/main.qml +++ b/mobile-widgets/qml/main.qml @@ -451,7 +451,22 @@ if you have network connectivity and want to sync your data to cloud storage."), pageStack.push(logWindow) } } - + Kirigami.Action { + text: qsTr("Test busy indicator (toggle)") + onTriggered: { + if (busy.running) { + hideBusy() + } else { + showBusy() + } + } + } + Kirigami.Action { + text: qsTr("Test notification text") + onTriggered: { + showPassiveNotification(qsTr("Test notification text"), 5000) + } + } Kirigami.Action { text: qsTr("Theme information") onTriggered: { |