diff options
| author | Felix (xq) Queißner <git@mq32.de> | 2020-06-28 13:11:00 +0200 |
|---|---|---|
| committer | Felix (xq) Queißner <git@mq32.de> | 2020-06-28 13:11:00 +0200 |
| commit | 0b524b7c2d0890809cc1dc835037fa1ea6674051 (patch) | |
| tree | a45ec977ccdb36bfb46bfaea45d3f71247336178 /src/mainwindow.cpp | |
| parent | 96754c53b4ff0d54f4d6c95a7c25186c58886a78 (diff) | |
| download | kristall-0b524b7c2d0890809cc1dc835037fa1ea6674051.tar.gz | |
Fixes #25 and #23, starts to implement new config/cache directory system.
Diffstat (limited to 'src/mainwindow.cpp')
| -rw-r--r-- | src/mainwindow.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
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; |
