From 51c24e2010ef849cddce6f4ae8ce5187e7151391 Mon Sep 17 00:00:00 2001 From: Danilo Leal <67129314+danilo-leal@users.noreply.github.com> Date: Thu, 10 Jul 2025 09:49:19 -0300 Subject: [PATCH] Reorder items in the quick action bar (#34203) Namely, putting the diagnostics items in their own little section, divider from the other "inline" and minimap/edit prediction items. I feel like this is an easier to parse organization, even though all the "inlines" made sense to be somewhat close together. Release Notes: - N/A --- crates/zed/src/zed/quick_action_bar.rs | 94 +++++++++++++------------- 1 file changed, 48 insertions(+), 46 deletions(-) diff --git a/crates/zed/src/zed/quick_action_bar.rs b/crates/zed/src/zed/quick_action_bar.rs index c998ac1075..888101140e 100644 --- a/crates/zed/src/zed/quick_action_bar.rs +++ b/crates/zed/src/zed/quick_action_bar.rs @@ -338,52 +338,6 @@ impl Render for QuickActionBar { ); } - if supports_diagnostics { - menu = menu.toggleable_entry( - "Diagnostics", - diagnostics_enabled, - IconPosition::Start, - Some(ToggleDiagnostics.boxed_clone()), - { - let editor = editor.clone(); - move |window, cx| { - editor - .update(cx, |editor, cx| { - editor.toggle_diagnostics( - &ToggleDiagnostics, - window, - cx, - ); - }) - .ok(); - } - }, - ); - - if supports_inline_diagnostics { - menu = menu.toggleable_entry( - "Inline Diagnostics", - inline_diagnostics_enabled, - IconPosition::Start, - Some(ToggleInlineDiagnostics.boxed_clone()), - { - let editor = editor.clone(); - move |window, cx| { - editor - .update(cx, |editor, cx| { - editor.toggle_inline_diagnostics( - &ToggleInlineDiagnostics, - window, - cx, - ); - }) - .ok(); - } - }, - ); - } - } - if supports_minimap { menu = menu.toggleable_entry("Minimap", minimap_enabled, IconPosition::Start, Some(editor::actions::ToggleMinimap.boxed_clone()), { let editor = editor.clone(); @@ -432,6 +386,54 @@ impl Render for QuickActionBar { menu = menu.separator(); + if supports_diagnostics { + menu = menu.toggleable_entry( + "Diagnostics", + diagnostics_enabled, + IconPosition::Start, + Some(ToggleDiagnostics.boxed_clone()), + { + let editor = editor.clone(); + move |window, cx| { + editor + .update(cx, |editor, cx| { + editor.toggle_diagnostics( + &ToggleDiagnostics, + window, + cx, + ); + }) + .ok(); + } + }, + ); + + if supports_inline_diagnostics { + menu = menu.toggleable_entry( + "Inline Diagnostics", + inline_diagnostics_enabled, + IconPosition::Start, + Some(ToggleInlineDiagnostics.boxed_clone()), + { + let editor = editor.clone(); + move |window, cx| { + editor + .update(cx, |editor, cx| { + editor.toggle_inline_diagnostics( + &ToggleInlineDiagnostics, + window, + cx, + ); + }) + .ok(); + } + }, + ); + } + + menu = menu.separator(); + } + menu = menu.toggleable_entry( "Line Numbers", show_line_numbers,