diff options
Diffstat (limited to 'qt-mobile')
-rw-r--r-- | qt-mobile/qml/ThemeTest.qml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/qt-mobile/qml/ThemeTest.qml b/qt-mobile/qml/ThemeTest.qml index 3ca10f0a1..392284c13 100644 --- a/qt-mobile/qml/ThemeTest.qml +++ b/qt-mobile/qml/ThemeTest.qml @@ -3,6 +3,18 @@ import QtQuick.Layouts 1.1 import org.kde.plasma.mobilecomponents 0.2 as MobileComponents MobileComponents.Page { + + contextualActions: [ + Action { + text: "Close Theme info" + iconName: "dialog-cancel" + onTriggered: { + stackView.pop() + contextDrawer.close() + } + } + ] + GridLayout { id: themetest columns: 2 |