From 45a4d87eed828d88bfb46198715d7603ee76c608 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yara=20=F0=9F=8F=B3=EF=B8=8F=E2=80=8D=E2=9A=A7=EF=B8=8F?= Date: Thu, 25 Jun 2026 12:56:11 +0200 Subject: [PATCH] Fix recent projects footer overflowing (#59891) The width of the recent projects picker was set too small. When selecting an item that is already opened an additional action (remove current window) appears that overflows. This sets the width such that that no longer occurs. fixes: #59847 Release Notes: - N/A (bug on preview only) --- crates/recent_projects/src/recent_projects.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/recent_projects/src/recent_projects.rs b/crates/recent_projects/src/recent_projects.rs index 78ddc6787f7..781d85c874b 100644 --- a/crates/recent_projects/src/recent_projects.rs +++ b/crates/recent_projects/src/recent_projects.rs @@ -705,7 +705,7 @@ impl RecentProjects { ProjectPickerStyle::Modal, ); - Self::new(delegate, fs, 34., window, cx) + Self::new(delegate, fs, 42., window, cx) }) }