┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinmainwindow.cpp
diff options
context:
space:
mode:
authorMéven Car <[email protected]>2020-11-08 08:21:56 +0100
committerMéven Car <[email protected]>2021-04-17 10:44:28 +0200
commit4f4e3d392c9645e3d43c362af72e2066430890f6 (patch)
tree24cc999a3d0ae67a63ed7fc961b98231cbec633b /src/dolphinmainwindow.cpp
parent20848147813a0c5de3427c4d6a36c31d03563c89 (diff)
PlacesPanel: activating a place does not select its previously selected children
BUG: 421347
Diffstat (limited to 'src/dolphinmainwindow.cpp')
-rw-r--r--src/dolphinmainwindow.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp
index e7c402b88..0ff7e77e5 100644
--- a/src/dolphinmainwindow.cpp
+++ b/src/dolphinmainwindow.cpp
@@ -1243,7 +1243,9 @@ void DolphinMainWindow::slotPlaceActivated(const QUrl& url)
// which had been unmounted earlier, see https://bugs.kde.org/show_bug.cgi?id=161385.
reloadView();
} else {
+ view->disableUrlNavigatorSelectionRequests();
changeUrl(url);
+ view->enableUrlNavigatorSelectionRequests();
}
}