diff options
Diffstat (limited to 'qt-mobile/qml/About.qml')
-rw-r--r-- | qt-mobile/qml/About.qml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/qt-mobile/qml/About.qml b/qt-mobile/qml/About.qml index fb389ca86..87d7a0a3e 100644 --- a/qt-mobile/qml/About.qml +++ b/qt-mobile/qml/About.qml @@ -8,6 +8,17 @@ MobileComponents.Page { id: aboutPage property int pageWidth: subsurfaceTheme.columnWidth - MobileComponents.Units.gridUnit + contextualActions: [ + Action { + text: "Close About" + iconName: "dialog-cancel" + onTriggered: { + stackView.pop() + contextDrawer.close() + } + } + ] + ScrollView { anchors.fill: parent |