From e8db076135bb04b81cfc227f1e65067c21248200 Mon Sep 17 00:00:00 2001 From: Frank Reininghaus Date: Tue, 10 Mar 2009 00:56:38 +0000 Subject: [PATCH] Call updatePasteAction() in DolphinPart::openUrl(). Fixes the problem that the paste action is disabled in Konqueror on startup. BUG: 186482 svn path=/trunk/KDE/kdebase/apps/; revision=937598 --- src/dolphinpart.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/dolphinpart.cpp b/src/dolphinpart.cpp index 882e2f1d3f..c5d85a3cc5 100644 --- a/src/dolphinpart.cpp +++ b/src/dolphinpart.cpp @@ -276,6 +276,7 @@ bool DolphinPart::openUrl(const KUrl& url) emit started(0); // get the wheel to spin m_dirLister->setNameFilter(m_nameFilter); m_view->setUrl(url); + updatePasteAction(); emit aboutToOpenURL(); if (reload) m_view->reload();