From 849c3f27f8e32f1e532fef8151cf33766765165b Mon Sep 17 00:00:00 2001 From: OBattler Date: Thu, 9 Nov 2023 16:51:48 +0100 Subject: [PATCH] The option to show status icons in full screen now calls config_save() on toggle, fixes #3815. --- src/qt/qt_mainwindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/qt/qt_mainwindow.cpp b/src/qt/qt_mainwindow.cpp index 4b849edd6..a5651eada 100644 --- a/src/qt/qt_mainwindow.cpp +++ b/src/qt/qt_mainwindow.cpp @@ -2033,5 +2033,6 @@ void MainWindow::on_actionShow_status_icons_in_fullscreen_triggered() { status_icons_fullscreen = !status_icons_fullscreen; ui->actionShow_status_icons_in_fullscreen->setChecked(status_icons_fullscreen); + config_save(); }