┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/panels
diff options
context:
space:
mode:
authorArjun AK <[email protected]>2014-12-10 22:51:25 +0530
committerArjun AK <[email protected]>2014-12-10 23:13:23 +0530
commit895a7c941bb25cacf88efe588d7c239dabe3993b (patch)
tree62bc8d2332aaa3b42c31c91f97615af1a19eff9a /src/panels
parent1d7b3b8df525d72126c716c9809c058f481e873e (diff)
Fix Terminal-View navigation sync issue
The URL needs to be constructed from 'QUrl::fromLocalFile()' instead of a QString so that the scheme is set properly. REVIEW: 121409 BUG: 341678
Diffstat (limited to 'src/panels')
-rw-r--r--src/panels/terminal/terminalpanel.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/panels/terminal/terminalpanel.cpp b/src/panels/terminal/terminalpanel.cpp
index fb7d89d31..ee88bd4c5 100644
--- a/src/panels/terminal/terminalpanel.cpp
+++ b/src/panels/terminal/terminalpanel.cpp
@@ -199,5 +199,6 @@ void TerminalPanel::slotKonsolePartCurrentDirectoryChanged(const QString& dir)
}
}
- emit changeUrl(dir);
+ const QUrl url(QUrl::fromLocalFile(dir));
+ emit changeUrl(url);
}