From 5e94938466abbee74cede19e26c7ed963877ac47 Mon Sep 17 00:00:00 2001 From: Sebastian Palencsar Date: Sat, 27 Jun 2026 13:29:29 +0200 Subject: [PATCH] fix(ui): keep the same header bar on the About page Show SearchToolbar and QuickFilters on About instead of swapping in a separate stretched navigation row. Leaving About works via the sidebar, the clickable logo, or any search/filter action. --- src/qml/Main.qml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/qml/Main.qml b/src/qml/Main.qml index ef25fd9..8ba962c 100644 --- a/src/qml/Main.qml +++ b/src/qml/Main.qml @@ -211,7 +211,7 @@ ApplicationWindow { Layout.fillWidth: true app: root compactMode: root.compactMode - visible: root.compactMode || currentPage === "about" + visible: root.compactMode } Rectangle { @@ -219,7 +219,7 @@ ApplicationWindow { Layout.preferredHeight: 1 color: BearTheme.cardBorder opacity: 0.6 - visible: root.compactMode || currentPage === "about" + visible: root.compactMode } SearchToolbar { @@ -228,14 +228,12 @@ ApplicationWindow { app: root compactMode: root.compactMode searchTimer: searchTimer - visible: currentPage !== "about" } QuickFilters { Layout.fillWidth: true app: root compactMode: root.compactMode - visible: currentPage !== "about" } Label {