┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinpart.cpp
diff options
context:
space:
mode:
authorJonathan Marten <[email protected]>2016-12-06 06:57:00 +0000
committerJonathan Marten <[email protected]>2016-12-06 06:59:49 +0000
commit16db90c7938d09bfa8916afef8cce8dd258fa00d (patch)
tree7e9c7e58b781e917d31c6a1264ee90f88c94a073 /src/dolphinpart.cpp
parent172d554059d3ef7d42dd554aa6de01937bce32ab (diff)
Dolphin Part: Update the paste action at the end of the listing
Fixes a problem with the paste action not being enabled, only seen in Konqueror. BUG:369523 REVIEW:129448
Diffstat (limited to 'src/dolphinpart.cpp')
-rw-r--r--src/dolphinpart.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/dolphinpart.cpp b/src/dolphinpart.cpp
index aa9ab2986..b55bcabb2 100644
--- a/src/dolphinpart.cpp
+++ b/src/dolphinpart.cpp
@@ -78,6 +78,7 @@ DolphinPart::DolphinPart(QWidget* parentWidget, QObject* parent, const QVariantL
this, &DolphinPart::slotErrorMessage);
connect(m_view, &DolphinView::directoryLoadingCompleted, this, static_cast<void(DolphinPart::*)()>(&DolphinPart::completed));
+ connect(m_view, &DolphinView::directoryLoadingCompleted, this, &DolphinPart::updatePasteAction);
connect(m_view, &DolphinView::directoryLoadingProgress, this, &DolphinPart::updateProgress);
connect(m_view, &DolphinView::errorMessage, this, &DolphinPart::slotErrorMessage);