fix(ui): remove redundant About button from About-page nav bar

The desktop header navigation only appears on the About page as a way
back to station browsing; the About/Info button had no purpose there.
This commit is contained in:
Sebastian Palencsar
2026-06-27 13:27:56 +02:00
parent e219b060a4
commit 4d302852c8

View File

@@ -58,14 +58,6 @@ Item {
highlighted: app.currentPage === "history" highlighted: app.currentPage === "history"
onClicked: app.navigateToHistory() onClicked: app.navigateToHistory()
} }
Item { Layout.fillWidth: true }
Button {
text: qsTr("About")
highlighted: app.currentPage === "about"
onClicked: app.navigateToAbout()
}
} }
ColumnLayout { ColumnLayout {