Skip to content

Commit

Permalink
Disable notification area by default for now because it's not polishe…
Browse files Browse the repository at this point in the history
…d enough for the 0.21 release.
  • Loading branch information
PaddleStroke authored and chennes committed Jul 31, 2023
1 parent 92b2635 commit e5a00e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Gui/DlgSettingsNotificationArea.ui
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion src/Gui/MainWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down

0 comments on commit e5a00e1

Please sign in to comment.