From 0b524b7c2d0890809cc1dc835037fa1ea6674051 Mon Sep 17 00:00:00 2001 From: "Felix (xq) Queißner" Date: Sun, 28 Jun 2020 13:11:00 +0200 Subject: Fixes #25 and #23, starts to implement new config/cache directory system. --- src/mainwindow.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/mainwindow.cpp') diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 625fc3a..885b5b4 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -112,7 +112,9 @@ BrowserTab * MainWindow::addEmptyTab(bool focus_new, bool load_default) } if(load_default) { - tab->navigateTo(QUrl(global_options.start_page), BrowserTab::DontPush); + tab->navigateTo(QUrl(global_options.start_page), BrowserTab::PushImmediate); + } else { + tab->navigateTo(QUrl("about:blank"), BrowserTab::DontPush); } return tab; -- cgit v1.2.3