From 3f4da03d38c7a244f1a9df0cd9e5d67a334a2f55 Mon Sep 17 00:00:00 2001 From: Anthony Eid <56899983+Anthony-Eid@users.noreply.github.com> Date: Fri, 19 Dec 2025 16:48:53 -0500 Subject: [PATCH] settings ui: Change window kind from floating to normal (#45401) #40291 made floating windows always stay on top, which made the settings ui window always on top of Zed. To maintain the old behavior, this PR changes the setting window to be a normal window. Release Notes: - N/A --- crates/settings_ui/src/settings_ui.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/settings_ui/src/settings_ui.rs b/crates/settings_ui/src/settings_ui.rs index 0ec6d0aee308ce3c20b67a5db9c6a6d9224bf229..a735553f78d487ad4def08a98886f422b113dba4 100644 --- a/crates/settings_ui/src/settings_ui.rs +++ b/crates/settings_ui/src/settings_ui.rs @@ -602,7 +602,7 @@ pub fn open_settings_editor( focus: true, show: true, is_movable: true, - kind: gpui::WindowKind::Floating, + kind: gpui::WindowKind::Normal, window_background: cx.theme().window_background_appearance(), app_id: Some(app_id.to_owned()), window_decorations: Some(window_decorations),