Hide the notifications panel by default (#32705)

Kirill Bulatov and Conrad Irwin created

Release Notes:

- The notifications panel is hidden by default now

Co-authored-by: Conrad Irwin <conrad.irwin@gmail.com>

Change summary

assets/settings/default.json           | 2 +-
crates/collab_ui/src/panel_settings.rs | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)

Detailed changes

assets/settings/default.json 🔗

@@ -716,7 +716,7 @@
   },
   "notification_panel": {
     // Whether to show the notification panel button in the status bar.
-    "button": true,
+    "button": false,
     // Where to dock the notification panel. Can be 'left' or 'right'.
     "dock": "right",
     // Default width of the notification panel.

crates/collab_ui/src/panel_settings.rs 🔗

@@ -56,7 +56,7 @@ pub struct NotificationPanelSettings {
 pub struct PanelSettingsContent {
     /// Whether to show the panel button in the status bar.
     ///
-    /// Default: true
+    /// Default: false
     pub button: Option<bool>,
     /// Where to dock the panel.
     ///