From 345e3e7a8276c12b481c3b6e91fb2e7ca6b6ab2b Mon Sep 17 00:00:00 2001 From: David Faure Date: Wed, 21 Sep 2016 23:41:55 +0200 Subject: Follow changes in konqpopupmenu: no longer back/forward/up in part's contextmenu. --- src/dolphinpart.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'src/dolphinpart.cpp') diff --git a/src/dolphinpart.cpp b/src/dolphinpart.cpp index 332f8e9b9..aa9ab2986 100644 --- a/src/dolphinpart.cpp +++ b/src/dolphinpart.cpp @@ -397,7 +397,6 @@ void DolphinPart::slotOpenContextMenu(const QPoint& pos, KFileItem item(_item); if (item.isNull()) { // viewport context menu - popupFlags |= KParts::BrowserExtension::ShowNavigationItems | KParts::BrowserExtension::ShowUp; item = m_view->rootItem(); if (item.isNull()) item = KFileItem(url()); -- cgit v1.3 From 16db90c7938d09bfa8916afef8cce8dd258fa00d Mon Sep 17 00:00:00 2001 From: Jonathan Marten Date: Tue, 6 Dec 2016 06:57:00 +0000 Subject: 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(+) (limited to 'src/dolphinpart.cpp') 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); -- cgit v1.3