Add setting to hide onboarding banners (#29709)
Closes #28637 aka #29219. Release Notes: - Added `workspace.title_bar.show_onboarding_banner` preference to hide onboarding banners. - Relocated `workspace.show_user_picture` preference to `workspace.title_bar.show_user_picture`.
This commit is contained in:
parent
c92b2e31e1
commit
bd11bb5409
4 changed files with 21 additions and 11 deletions
|
@ -23,7 +23,6 @@ pub struct WorkspaceSettings {
|
|||
pub use_system_path_prompts: bool,
|
||||
pub use_system_prompts: bool,
|
||||
pub command_aliases: HashMap<String, String>,
|
||||
pub show_user_picture: bool,
|
||||
pub max_tabs: Option<NonZeroUsize>,
|
||||
pub when_closing_with_no_tabs: CloseWindowWhenNoItems,
|
||||
pub on_last_window_closed: OnLastWindowClosed,
|
||||
|
@ -189,10 +188,6 @@ pub struct WorkspaceSettingsContent {
|
|||
///
|
||||
/// Default: true
|
||||
pub command_aliases: Option<HashMap<String, String>>,
|
||||
/// Whether to show user avatar in the title bar.
|
||||
///
|
||||
/// Default: true
|
||||
pub show_user_picture: Option<bool>,
|
||||
/// Maximum open tabs in a pane. Will not close an unsaved
|
||||
/// tab. Set to `None` for unlimited tabs.
|
||||
///
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue