recent_projects: Improve remote picker UX with long paths (#46151)

Closes #36503

Release Notes:

- Improved readability of long paths in remote project picker
This commit is contained in:
Lukas Wirth 2026-01-06 11:54:34 +01:00 committed by GitHub
parent 2c7bfec297
commit b4fb8ff20e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1411,11 +1411,12 @@ impl RemoteServerProjects {
.color(Color::Muted)
.size(IconSize::Small),
)
.child(Label::new(project.paths.join(", ")))
.child(Label::new(project.paths.join(", ")).truncate_start())
.on_click(cx.listener(move |this, e: &ClickEvent, window, cx| {
let secondary_confirm = e.modifiers().platform;
callback(this, secondary_confirm, window, cx)
}))
.tooltip(Tooltip::text(project.paths.join("\n")))
.when(is_from_zed, |server_list_item| {
server_list_item.end_hover_slot::<AnyElement>(Some(
div()