From 2b9570e3e797112b6d138e7fe579141308bc92b7 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Tue, 2 Jan 2024 15:51:16 -0500 Subject: [PATCH] Fix spacing in diagnostics tab (#3844) This PR fixes the spacing in the diagnostics tab. #### Before Screenshot 2024-01-02 at 3 40 51 PM #### After Screenshot 2024-01-02 at 3 40 54 PM Release Notes: - N/A --- crates/diagnostics2/src/diagnostics.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/diagnostics2/src/diagnostics.rs b/crates/diagnostics2/src/diagnostics.rs index bd262e8bbfa00e57fdedec974bf807c97090a1bc..4c2e01c320d6c0551ace5bee77d663691665f0b8 100644 --- a/crates/diagnostics2/src/diagnostics.rs +++ b/crates/diagnostics2/src/diagnostics.rs @@ -663,6 +663,7 @@ impl Item for ProjectDiagnosticsEditor { .when(self.summary.warning_count > 0, |then| { then.child( h_stack() + .gap_1() .child( IconElement::new(Icon::ExclamationTriangle).color(Color::Warning), )