diff options
Diffstat (limited to 'qt-mobile/qml/main.qml')
-rw-r--r-- | qt-mobile/qml/main.qml | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/qt-mobile/qml/main.qml b/qt-mobile/qml/main.qml index 6054b2fe6..087de2621 100644 --- a/qt-mobile/qml/main.qml +++ b/qt-mobile/qml/main.qml @@ -161,8 +161,14 @@ MobileComponents.ApplicationWindow { manager.verboseEnabled = checked; } } + }, + Action { + text: "About" + onTriggered: { + stackView.push(aboutWindow) + detailsWindow.endEditMode() + } } - ] // end actions MouseArea { @@ -240,6 +246,11 @@ MobileComponents.ApplicationWindow { visible: false } + About { + id: aboutWindow + visible: false + } + CloudCredentials { id: cloudCredWindow visible: false |