From 4d302852c8f7a59ec9b46c678feea2c3ced7e953 Mon Sep 17 00:00:00 2001 From: Sebastian Palencsar Date: Sat, 27 Jun 2026 13:27:56 +0200 Subject: [PATCH] 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. --- src/qml/components/HeaderNavigation.qml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/qml/components/HeaderNavigation.qml b/src/qml/components/HeaderNavigation.qml index 39f550c..3122587 100644 --- a/src/qml/components/HeaderNavigation.qml +++ b/src/qml/components/HeaderNavigation.qml @@ -58,14 +58,6 @@ Item { highlighted: app.currentPage === "history" onClicked: app.navigateToHistory() } - - Item { Layout.fillWidth: true } - - Button { - text: qsTr("About") - highlighted: app.currentPage === "about" - onClicked: app.navigateToAbout() - } } ColumnLayout {