From 06e155684e07b53fe0bf5afe89f1dfb434287b97 Mon Sep 17 00:00:00 2001 From: Finn Eitreim <48069764+feitreim@users.noreply.github.com> Date: Fri, 10 Jul 2026 20:40:28 -0400 Subject: [PATCH] remove constraint on minimum size. --- crates/settings_ui/src/settings_ui.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/crates/settings_ui/src/settings_ui.rs b/crates/settings_ui/src/settings_ui.rs index 35f816d649b0ed..b3c0b5b337b7eb 100644 --- a/crates/settings_ui/src/settings_ui.rs +++ b/crates/settings_ui/src/settings_ui.rs @@ -870,10 +870,7 @@ fn open_settings_editor_with( app_id: Some(app_id.to_owned()), window_decorations: Some(window_decorations), window_min_size: Some(gpui::Size { - // Don't make the settings window thinner than this, - // otherwise, it gets unusable. Users with smaller res monitors - // can customize the height, but not the width. - width: px(900.0), + width: px(360.0), height: px(240.0), }), window_bounds: Some(WindowBounds::centered(scaled_bounds, cx)),