From fd5f068ae912bec800df24fcac624fb1e3d9593e Mon Sep 17 00:00:00 2001 From: aqua Date: Sat, 3 Sep 2022 15:00:06 +0300 Subject: Close main window after last tab is closed --- src/rekonqwindow.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/rekonqwindow.cpp') diff --git a/src/rekonqwindow.cpp b/src/rekonqwindow.cpp index ef772936..f969622c 100644 --- a/src/rekonqwindow.cpp +++ b/src/rekonqwindow.cpp @@ -23,9 +23,11 @@ RekonqWindow::RekonqWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::Re { ui->setupUi(this); - connect(ui->tabs, &QTabBar::currentChanged, this, [this](int index) { - auto *view = ui->tabs->view(index); - Q_CHECK_PTR(view); + connect(ui->tabs, &TabBar::currentChanged, this, [this](RekonqView *view) { + if (view == nullptr) { // last tab has been closed + close(); + return; + } ui->views->setCurrentWidget(view); ui->urlBar->setCurrentView(view); -- cgit v1.2.1