From e9d5e558bcb6b7827dba51686e9556ceeec1f02d Mon Sep 17 00:00:00 2001 From: Leonardo Malaman Date: Fri, 1 Aug 2025 17:18:48 -0300 Subject: [PATCH] DolphinMainWindow: Notify current selection changed when changing tabs So the Information Panel refreshes. --- src/dolphinmainwindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp index 78560d820..51772eac2 100644 --- a/src/dolphinmainwindow.cpp +++ b/src/dolphinmainwindow.cpp @@ -1661,6 +1661,7 @@ void DolphinMainWindow::activeViewChanged(DolphinViewContainer *viewContainer) const QUrl url = viewContainer->url(); Q_EMIT urlChanged(url); + Q_EMIT selectionChanged(m_activeViewContainer->view()->selectedItems()); } void DolphinMainWindow::tabCountChanged(int count) -- 2.47.3