diff options
| author | Nate Graham <[email protected]> | 2020-10-05 15:19:04 -0600 |
|---|---|---|
| committer | Nate Graham <[email protected]> | 2020-10-05 15:19:04 -0600 |
| commit | 462982faa361c79daab43ce526ae64646b1ea63c (patch) | |
| tree | 99ea6eb70df3aadacf70a6d1cf4754324e7c1bff /src | |
| parent | daa0fc341d8873f8b88400684642f59e6e3ef956 (diff) | |
| parent | 6cf628cbd0841847795740dd02affec281d9a89a (diff) | |
Merge branch 'release/20.08' into master
Diffstat (limited to 'src')
| -rw-r--r-- | src/dolphinmainwindow.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp index 92d673a95..0fb953312 100644 --- a/src/dolphinmainwindow.cpp +++ b/src/dolphinmainwindow.cpp @@ -475,7 +475,10 @@ void DolphinMainWindow::closeEvent(QCloseEvent* event) closedByUser = false; } - if (m_tabWidget->count() > 1 && GeneralSettings::confirmClosingMultipleTabs() && closedByUser) { + if (m_tabWidget->count() > 1 + && GeneralSettings::confirmClosingMultipleTabs() + && !GeneralSettings::rememberOpenedTabs() + && closedByUser) { // Ask the user if he really wants to quit and close all tabs. // Open a confirmation dialog with 3 buttons: // QDialogButtonBox::Yes -> Quit |
