From f11a3dcc9736eedb79314e29fb05b83dac040264 Mon Sep 17 00:00:00 2001 From: Danilo Leal <67129314+danilo-leal@users.noreply.github.com> Date: Thu, 23 Oct 2025 22:08:26 -0300 Subject: [PATCH] settings_ui: Add small UI adjustments (#41065) Super tiny changes that impact mostly Windows/Linux. Release Notes: - N/A --- crates/settings_ui/src/settings_ui.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/crates/settings_ui/src/settings_ui.rs b/crates/settings_ui/src/settings_ui.rs index 2cf82d76dc..d13370ed17 100644 --- a/crates/settings_ui/src/settings_ui.rs +++ b/crates/settings_ui/src/settings_ui.rs @@ -590,7 +590,7 @@ pub fn open_settings_editor( cx.open_window( WindowOptions { titlebar: Some(TitlebarOptions { - title: Some("Settings Window".into()), + title: Some("Zed — Settings".into()), appears_transparent: true, traffic_light_position: Some(point(px(12.0), px(12.0))), }), @@ -3068,6 +3068,9 @@ impl Render for SettingsWindow { .font(ui_font) .bg(cx.theme().colors().background) .text_color(cx.theme().colors().text) + .when(!cfg!(target_os = "macos"), |this| { + this.border_t_1().border_color(cx.theme().colors().border) + }) .child(self.render_nav(window, cx)) .child(self.render_page(window, cx)), ),