From 3e6b84a726d25df9dbcb8f298e2403b40b894771 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Tue, 19 Dec 2023 11:26:55 -0500 Subject: [PATCH] Wire up the middle mouse button to close tabs (#3714) This PR wires up the middle mouse button to close tabs. Right now we're doing this using `on_mouse_down`, but we need a way in GPUI2 to have an `on_click` for a mouse button other than the left one. Release Notes: - N/A --- crates/workspace2/src/pane.rs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/crates/workspace2/src/pane.rs b/crates/workspace2/src/pane.rs index 65e34c9fa5cb609136942547411dd7d2c89a330a..e1bb006c11428149d5ade09aed2db137e7e61cdb 100644 --- a/crates/workspace2/src/pane.rs +++ b/crates/workspace2/src/pane.rs @@ -1493,6 +1493,14 @@ impl Pane { .on_click( cx.listener(move |pane: &mut Self, _, cx| pane.activate_item(ix, true, true, cx)), ) + // TODO: This should be a click listener with the middle mouse button instead of a mouse down listener. + .on_mouse_down( + MouseButton::Middle, + cx.listener(move |pane, _event, cx| { + pane.close_item_by_id(item_id, SaveIntent::Close, cx) + .detach_and_log_err(cx); + }), + ) .on_drag( DraggedTab { pane: cx.view().clone(),