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)
This commit is contained in:
Yara 🏳️‍⚧️ 2026-06-25 12:56:11 +02:00 committed by GitHub
parent 17c0ebb0f7
commit 45a4d87eed
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -705,7 +705,7 @@ impl RecentProjects {
ProjectPickerStyle::Modal,
);
Self::new(delegate, fs, 34., window, cx)
Self::new(delegate, fs, 42., window, cx)
})
}