diff options
-rw-r--r-- | src/webtab/webtab.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/webtab/webtab.cpp b/src/webtab/webtab.cpp index 2060ddab..00a3c819 100644 --- a/src/webtab/webtab.cpp +++ b/src/webtab/webtab.cpp @@ -178,6 +178,9 @@ KUrl WebTab::url() QString WebTab::title() { + if (view() && url().protocol() == QL1S("about")) + return view()->title(); + if (page() && page()->isOnRekonqPage()) { return url().url(); |