diff options
| author | Felix (xq) Queißner <git@mq32.de> | 2020-06-06 21:45:41 +0200 |
|---|---|---|
| committer | Felix (xq) Queißner <git@mq32.de> | 2020-06-06 21:45:41 +0200 |
| commit | cbc17bd39f4ef245183e5a54509ff3fbd4125ca6 (patch) | |
| tree | bf35bd5f6a64a22fe002316d0d311a3b5f4107ab /browsertab.cpp | |
| parent | eb283439a68dfb70a075205859d891dca831626b (diff) | |
| download | kristall-cbc17bd39f4ef245183e5a54509ff3fbd4125ca6.tar.gz | |
Fixes bug in outline generation, adds application icon to mainwindow, adds more README, adds save settings on closing settings dialog.
Diffstat (limited to 'browsertab.cpp')
| -rw-r--r-- | browsertab.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/browsertab.cpp b/browsertab.cpp index dd8b3a7..6543c86 100644 --- a/browsertab.cpp +++ b/browsertab.cpp @@ -130,6 +130,8 @@ void BrowserTab::on_menu_button_clicked() if(dialog.exec() == QDialog::Accepted) { mainWindow->current_style = dialog.geminiStyle(); + + mainWindow->saveSettings(); } }); @@ -361,7 +363,6 @@ void BrowserTab::setErrorMessage(const QString &msg) void BrowserTab::pushToHistory(const QUrl &url) { - qDebug() << "push to history" << this->current_history_index << url; this->current_history_index = this->history.pushUrl(this->current_history_index, url); this->updateUI(); } |
