diff options
| author | David Faure <[email protected]> | 2008-06-09 11:59:15 +0000 |
|---|---|---|
| committer | David Faure <[email protected]> | 2008-06-09 11:59:15 +0000 |
| commit | 11bf9d8dbb25ce254135454761bd0f138f06a8a3 (patch) | |
| tree | e56e0bd504ff65227d4ebb6598a34058287bdd78 /src | |
| parent | ffe9bbacd9a27f3a2a8c349504a65e1c89e64503 (diff) | |
Another fix for redirections: "Create New" was missing from the konqpopupmenu when doing RMB on ftp://user@host, because after the redirection, part->url() was still the old url (so it didn't look like a popup opened for the current directory, in the konqpopupemenu code)
svn path=/trunk/KDE/kdebase/apps/; revision=818721
Diffstat (limited to 'src')
| -rw-r--r-- | src/dolphinpart.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/dolphinpart.cpp b/src/dolphinpart.cpp index dd0f33121..c566a4691 100644 --- a/src/dolphinpart.cpp +++ b/src/dolphinpart.cpp @@ -403,6 +403,7 @@ void DolphinPart::slotOpenContextMenu(const KFileItem& _item, const KUrl&) void DolphinPart::slotUrlChanged(const KUrl& url) { + KParts::ReadOnlyPart::setUrl(url); QString prettyUrl = url.pathOrUrl(); emit m_extension->setLocationBarUrl(prettyUrl); } |
