┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/views/dolphinviewactionhandler.cpp
diff options
context:
space:
mode:
authorMéven Car <[email protected]>2025-11-21 09:56:55 +0100
committerMéven Car <[email protected]>2025-11-21 09:25:26 +0000
commite114f654ed1216aaa64593354ca1306a53fefef0 (patch)
treed044bfcf07dd2114636687f05423e60d3506ca96 /src/views/dolphinviewactionhandler.cpp
parentb39acbf9542bcce929a48070e3f6123eaa74078d (diff)
DolphinView: open the property dialog on Alt+activated
Similarly to Microsoft explorer. FEATURE: 512383
Diffstat (limited to 'src/views/dolphinviewactionhandler.cpp')
-rw-r--r--src/views/dolphinviewactionhandler.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/views/dolphinviewactionhandler.cpp b/src/views/dolphinviewactionhandler.cpp
index f85539e71..99d3e0111 100644
--- a/src/views/dolphinviewactionhandler.cpp
+++ b/src/views/dolphinviewactionhandler.cpp
@@ -63,6 +63,7 @@ void DolphinViewActionHandler::setCurrentView(DolphinView *view)
connect(view, &DolphinView::sortRoleChanged, this, &DolphinViewActionHandler::slotSortRoleChanged);
connect(view, &DolphinView::zoomLevelChanged, this, &DolphinViewActionHandler::slotZoomLevelChanged);
connect(view, &DolphinView::writeStateChanged, this, &DolphinViewActionHandler::slotWriteStateChanged);
+ connect(view, &DolphinView::requestPropertyDialog, this, &DolphinViewActionHandler::slotProperties);
slotWriteStateChanged(view->isFolderWritable());
connect(view, &DolphinView::selectionModeChangeRequested, this, [this](bool enabled) {
Q_EMIT selectionModeChangeTriggered(enabled);