From dd840e4b2776a66bc8b2f6ad8379e7fdb914c0c5 Mon Sep 17 00:00:00 2001 From: Piotr Osiewicz <24362066+osiewicz@users.noreply.github.com> Date: Thu, 7 Aug 2025 17:01:22 +0200 Subject: [PATCH] editor: Fix multi-buffer headers spilling over at narrow widths (#35800) Release Notes: - N/A --- crates/editor/src/element.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/editor/src/element.rs b/crates/editor/src/element.rs index 17a43f9640..034fff970d 100644 --- a/crates/editor/src/element.rs +++ b/crates/editor/src/element.rs @@ -3682,6 +3682,7 @@ impl EditorElement { .id("path header block") .size_full() .justify_between() + .overflow_hidden() .child( h_flex() .gap_2()