From 4425d58d7259313e8e2c75b9e63b4a623fdd9194 Mon Sep 17 00:00:00 2001 From: Kirill Bulatov Date: Fri, 13 Jun 2025 22:00:01 +0300 Subject: [PATCH] Revert "Hide the notifications panel by default (#32705)" (#32707) This reverts commit aabce921e321efa9c9b14d68367d69a0c43c175b. Release Notes: - N/A --- assets/settings/default.json | 2 +- crates/collab_ui/src/panel_settings.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/settings/default.json b/assets/settings/default.json index e97bcad339..1f1a1795c3 100644 --- a/assets/settings/default.json +++ b/assets/settings/default.json @@ -716,7 +716,7 @@ }, "notification_panel": { // Whether to show the notification panel button in the status bar. - "button": false, + "button": true, // Where to dock the notification panel. Can be 'left' or 'right'. "dock": "right", // Default width of the notification panel. diff --git a/crates/collab_ui/src/panel_settings.rs b/crates/collab_ui/src/panel_settings.rs index b15f7695ed..497b403019 100644 --- a/crates/collab_ui/src/panel_settings.rs +++ b/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: false + /// Default: true pub button: Option, /// Where to dock the panel. ///