From 16db90c7938d09bfa8916afef8cce8dd258fa00d Mon Sep 17 00:00:00 2001 From: Jonathan Marten Date: Tue, 6 Dec 2016 06:57:00 +0000 Subject: [PATCH] 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 --- src/dolphinpart.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/dolphinpart.cpp b/src/dolphinpart.cpp index aa9ab29862..b55bcabb25 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(&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);