diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2012-11-15 23:12:41 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2012-12-10 02:48:06 +0100 |
commit | d078cd5b18bbccfe6102ca04141e1ebc01083acf (patch) | |
tree | 8ba61fcac11b080aaf141a38a4bafae39caec927 /src/webtab | |
parent | Fix close action when some web apps are running (diff) | |
download | rekonq-d078cd5b18bbccfe6102ca04141e1ebc01083acf.tar.xz |
Fix tabwindow title when webwindow one is empty
(no more "rekonq - rekonq")
Diffstat (limited to 'src/webtab')
-rw-r--r-- | src/webtab/webtab.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/webtab/webtab.cpp b/src/webtab/webtab.cpp index bb616770..510177e6 100644 --- a/src/webtab/webtab.cpp +++ b/src/webtab/webtab.cpp @@ -145,6 +145,7 @@ WebWindow *WebTab::webWindow() return w; } + KUrl WebTab::url() { if (page() && page()->isOnRekonqPage()) @@ -408,7 +409,6 @@ void WebTab::zoomDefault() void WebTab::webAppTitleChanged(QString title) { - if (title.isEmpty()) setWindowTitle(i18n("rekonq")); else |