From 62e790074c7068e9b21c607ddef524e650ee9c24 Mon Sep 17 00:00:00 2001 From: Piotr Osiewicz <24362066+osiewicz@users.noreply.github.com> Date: Tue, 4 Jun 2024 19:13:21 +0200 Subject: [PATCH] vcs_menu: Fix header taking up too much space (#12646) We've spotted a regression following https://github.com/zed-industries/zed/pull/12468 ![image](https://github.com/zed-industries/zed/assets/24362066/8e2659c7-50fe-4a09-af9d-d04416a66276) This PR addresses that. Release Notes: - N/A Co-authored-by: Bennet --- crates/vcs_menu/src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/vcs_menu/src/lib.rs b/crates/vcs_menu/src/lib.rs index af8a7736ff..de5e8f76ab 100644 --- a/crates/vcs_menu/src/lib.rs +++ b/crates/vcs_menu/src/lib.rs @@ -282,7 +282,6 @@ impl PickerDelegate for BranchListDelegate { }); h_flex() .px_3() - .h_full() .justify_between() .child(Label::new("Branches").size(LabelSize::Small)) .children(match_label)