diff --git a/crates/search/src/buffer_search.rs b/crates/search/src/buffer_search.rs index ae902b8a33..d467140dda 100644 --- a/crates/search/src/buffer_search.rs +++ b/crates/search/src/buffer_search.rs @@ -272,28 +272,21 @@ impl Render for BufferSearchBar { "Select previous match", &SelectPrevMatch, )) - .when(!narrow_mode, |this| { - this.child( - h_flex() - .mx(rems_from_px(-4.0)) - .min_w(rems_from_px(40.)) - .justify_center() - .items_center() - .child(Label::new(match_text).color( - if self.active_match_index.is_some() { - Color::Default - } else { - Color::Disabled - }, - )), - ) - }) .child(render_nav_button( ui::IconName::ChevronRight, self.active_match_index.is_some(), "Select next match", &SelectNextMatch, - )), + )) + .when(!narrow_mode, |this| { + this.child(h_flex().min_w(rems_from_px(40.)).child( + Label::new(match_text).color(if self.active_match_index.is_some() { + Color::Default + } else { + Color::Disabled + }), + )) + }), ); let replace_line = should_show_replace_input.then(|| { diff --git a/crates/search/src/project_search.rs b/crates/search/src/project_search.rs index 8f6b791720..f8f5e9f9c5 100644 --- a/crates/search/src/project_search.rs +++ b/crates/search/src/project_search.rs @@ -1437,20 +1437,6 @@ impl Render for ProjectSearchBar { Tooltip::for_action("Go to previous match", &SelectPrevMatch, cx) }), ) - .child( - h_flex() - .mx(rems_from_px(-4.0)) - .min_w(rems_from_px(40.)) - .justify_center() - .items_center() - .child( - Label::new(match_text).color(if search.active_match_index.is_some() { - Color::Default - } else { - Color::Disabled - }), - ), - ) .child( IconButton::new("project-search-next-match", IconName::ChevronRight) .disabled(search.active_match_index.is_none()) @@ -1463,6 +1449,17 @@ impl Render for ProjectSearchBar { })) .tooltip(|cx| Tooltip::for_action("Go to next match", &SelectNextMatch, cx)), ) + .child( + h_flex() + .min_w(rems_from_px(40.)) + .child( + Label::new(match_text).color(if search.active_match_index.is_some() { + Color::Default + } else { + Color::Disabled + }), + ), + ) .when(limit_reached, |this| { this.child( div()