From c2d9d9becaf4267f03685e70233c1335f22d1c0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Fern=C3=A1ndez=20L=C3=B3pez?= Date: Thu, 20 Dec 2007 00:08:17 +0000 Subject: [PATCH] Fix the problem with the column views. BUG: 154053 CCMAIL: faure@kde.org svn path=/trunk/KDE/kdebase/apps/; revision=750749 --- src/dolphinpart.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dolphinpart.cpp b/src/dolphinpart.cpp index 714d4b09f5..616351d04d 100644 --- a/src/dolphinpart.cpp +++ b/src/dolphinpart.cpp @@ -320,7 +320,7 @@ void DolphinPart::slotUrlChanged(const KUrl& url) // If the view URL is not equal to 'url', then an inner URL change has // been done (e. g. by activating an existing column in the column view). // From the hosts point of view this must be handled like changing the URL. - emit m_extension->openUrlRequest(url); + emit m_extension->openUrlRequestDelayed(url, KParts::OpenUrlArguments(), KParts::BrowserArguments()); } }