diff --git a/application/qml/pages/MainPage.qml b/application/qml/pages/MainPage.qml index c5a1731..5d948db 100644 --- a/application/qml/pages/MainPage.qml +++ b/application/qml/pages/MainPage.qml @@ -69,6 +69,14 @@ Page { text: qsTr("Background", "More to read, background information...") onClicked: pageStack.push(Qt.resolvedUrl("InfoPage.qml")) } + MenuItem { + text: qsTr("About", "About this application") + onClicked: pageStack.push(Qt.resolvedUrl("AboutPage.qml")) + } + MenuItem { + text: qsTr("View log") + onClicked: pageStack.push(Qt.resolvedUrl("LogPage.qml")) + } } // Place our content in a Column. The PageHeader is always placed at the top diff --git a/application/qml/pages/SettingsPage.qml b/application/qml/pages/SettingsPage.qml index ca79a95..175f1d8 100644 --- a/application/qml/pages/SettingsPage.qml +++ b/application/qml/pages/SettingsPage.qml @@ -67,17 +67,6 @@ Page { anchors.fill: parent contentHeight: flow.height + Theme.horizontalPageMargin - PullDownMenu { - MenuItem { - text: qsTr("View log") - onClicked: pageStack.push(Qt.resolvedUrl("LogPage.qml")) - } - MenuItem { - text: qsTr("About", "About this application") - onClicked: pageStack.push(Qt.resolvedUrl("AboutPage.qml")) - } - } - Flow { id: flow anchors {