Revert "Hide the notifications panel by default (#32705)" (#32707)

This reverts commit aabce921e3.

Release Notes:

- N/A
This commit is contained in:
Kirill Bulatov 2025-06-13 22:00:01 +03:00 committed by GitHub
parent 29fa6d1a4d
commit 4425d58d72
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

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

View file

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