diff options
| author | Karol Kosek <krkk@krkk.ct8.pl> | 2021-04-11 18:02:25 +0200 |
|---|---|---|
| committer | Felix Queißner <felix@ib-queissner.de> | 2021-04-11 18:46:06 +0200 |
| commit | 9a55d32e2c58fbc99e3043fd9ffc29fd62a37db3 (patch) | |
| tree | 523eb694229586c44d3ec1cd8888e5f59dbb0f5e /src/main.cpp | |
| parent | f181d989d6fe2c5178bac08e8c47afe599633e85 (diff) | |
| download | kristall-9a55d32e2c58fbc99e3043fd9ffc29fd62a37db3.tar.gz | |
Save settings on exit
0d1fd257093c58bfb606aaac530aed3b0877f7fd changed kristall::saveSettings()
to settings.sync() which caused bookmarks not to be saved.
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 8a79d7a..c9a622c 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1121,5 +1121,5 @@ void kristall::saveSession() qDebug() << "Saved session with" << window_index << "windows and" << tab_count << "tabs in total."; - settings.sync(); + kristall::saveSettings(); } |
