Disable notification area by default for now because it's not polished enough for the 0.21 release.

This commit is contained in:
Paddle
2023-07-30 20:37:56 -05:00
committed by Chris Hennes
parent 92b26354ba
commit e5a00e153d
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -29,7 +29,7 @@
<string>Enable Notification Area</string>
</property>
<property name="checked">
<bool>true</bool>
<bool>false</bool>
</property>
<property name="prefEntry" stdset="0">
<cstring>NotificationAreaEnabled</cstring>
+1 -1
View File
@@ -394,7 +394,7 @@ MainWindow::MainWindow(QWidget * parent, Qt::WindowFlags f)
auto hGrp = App::GetApplication().GetParameterGroupByPath("User parameter:BaseApp/Preferences/NotificationArea");
auto notificationAreaEnabled = hGrp->GetBool("NotificationAreaEnabled", true);
auto notificationAreaEnabled = hGrp->GetBool("NotificationAreaEnabled", false);
if(notificationAreaEnabled) {
NotificationArea* notificationArea = new NotificationArea(statusBar());