From: Jonathan Marten Date: Tue, 6 Dec 2016 06:57:00 +0000 (+0000) Subject: Dolphin Part: Update the paste action at the end of the listing X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/16db90c7938d09bfa8916afef8cce8dd258fa00d 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 --- 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(&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);