From a6f73c10d1c7f440ff8efb5490861b21c0281acb Mon Sep 17 00:00:00 2001 From: Danilo Leal <67129314+danilo-leal@users.noreply.github.com> Date: Wed, 31 Jul 2024 18:58:07 -0300 Subject: [PATCH] Fix symlink icon in the project panel (#15537) Closes https://github.com/zed-industries/zed/issues/15481 --- Release Notes: - N/A --- crates/project_panel/src/project_panel.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/project_panel/src/project_panel.rs b/crates/project_panel/src/project_panel.rs index 585b120bd7..d4fa0eff41 100644 --- a/crates/project_panel/src/project_panel.rs +++ b/crates/project_panel/src/project_panel.rs @@ -2108,6 +2108,7 @@ impl ProjectPanel { this.end_slot::( div() .id("symlink_icon") + .pr_3() .tooltip(move |cx| { Tooltip::text(format!("{path} • Symbolic Link"), cx) })