summaryrefslogtreecommitdiff
path: root/src/tabwindow/tabwidget.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2013-03-13 16:34:34 +0100
committerAndrea Diamantini <adjam7@gmail.com>2013-03-13 16:34:34 +0100
commitb35c6e35d9cea978e57838ccc95779a25d048fb4 (patch)
treec84af6a19ccd52e7ca83d5a90c1842eeb276e1cf /src/tabwindow/tabwidget.cpp
parentAdded missing reload button when webpage fails to load (diff)
downloadrekonq-b35c6e35d9cea978e57838ccc95779a25d048fb4.tar.xz
Restore a small portion of (un)ported code
Close window if option says so BUG: 316637
Diffstat (limited to 'src/tabwindow/tabwidget.cpp')
-rw-r--r--src/tabwindow/tabwidget.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/tabwindow/tabwidget.cpp b/src/tabwindow/tabwidget.cpp
index 322c45e1..bdc7a47a 100644
--- a/src/tabwindow/tabwidget.cpp
+++ b/src/tabwindow/tabwidget.cpp
@@ -621,7 +621,12 @@ void TabWidget::closeTab(int index, bool del)
// what to do if there is just one tab...
if (count() == 1)
{
- kDebug() << "CANNOT CLOSE WINDOW FROM HERE...";
+ if (ReKonfig::lastTabClosesWindow())
+ {
+ emit closeWindow();
+ return;
+ }
+
currentWebWindow()->load(KUrl("about:home"));
return;
}