From ad4571e36d4b0ed8c8481b7e6264e8cfc7a45859 Mon Sep 17 00:00:00 2001 From: Chris Date: Sun, 19 Oct 2025 21:04:06 -0500 Subject: [PATCH] GUI: Check correct parameter for pop-up notifications (#24727) --- src/Gui/PreferencePages/DlgSettingsNotificationArea.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gui/PreferencePages/DlgSettingsNotificationArea.cpp b/src/Gui/PreferencePages/DlgSettingsNotificationArea.cpp index e79701c226..f099551e2d 100644 --- a/src/Gui/PreferencePages/DlgSettingsNotificationArea.cpp +++ b/src/Gui/PreferencePages/DlgSettingsNotificationArea.cpp @@ -61,7 +61,7 @@ void DlgSettingsNotificationArea::saveSettings() bool isNotificationAreaEnabled = ui->NotificationAreaEnabled->isChecked(); hGrp->SetBool("NotificationAreaEnabled", isNotificationAreaEnabled); - bool isNonIntrusiveNotificationsEnabled = ui->NotificationAreaEnabled->isChecked(); + bool isNonIntrusiveNotificationsEnabled = ui->NonIntrusiveNotificationsEnabled->isChecked(); hGrp->SetBool("NonIntrusiveNotificationsEnabled", isNonIntrusiveNotificationsEnabled); ui->maxDuration->onSave();