┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/views/dolphinview.cpp
diff options
context:
space:
mode:
authorFlorian RICHER <[email protected]>2026-05-15 17:29:46 +0200
committerFlorian RICHER <[email protected]>2026-05-31 10:57:56 +0200
commit2a72145eb09276a4576762b74cb976fcd4550e87 (patch)
treec7be1a38ab004c12162edff698fceafe3d8e6488 /src/views/dolphinview.cpp
parentf622de7f00b6585c9a17e3ed208921582babf77e (diff)
dolphinview: Unselect navigator when click on background
Diffstat (limited to 'src/views/dolphinview.cpp')
-rw-r--r--src/views/dolphinview.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/views/dolphinview.cpp b/src/views/dolphinview.cpp
index 74c5ecd23..97c1e926c 100644
--- a/src/views/dolphinview.cpp
+++ b/src/views/dolphinview.cpp
@@ -129,6 +129,7 @@ DolphinView::DolphinView(const QUrl &url, QWidget *parent)
KItemListController *controller = new KItemListController(m_model, m_view, this);
controller->setAutoActivationEnabled(GeneralSettings::autoExpandFolders());
+ connect(controller, &KItemListController::clickViewBackground, this, &DolphinView::clickViewBackground);
connect(controller, &KItemListController::doubleClickViewBackground, this, &DolphinView::doubleClickViewBackground);
connect(controller, &KItemListController::typeAheadUsed, this, [this](const QString &typedString, std::optional<int> foundIndex) {
if (foundIndex.has_value()) {