From baa9e271d518944d80f4a534b1b7943041a62298 Mon Sep 17 00:00:00 2001 From: Petros Amoiridis Date: Wed, 8 Mar 2023 11:00:30 +0200 Subject: [PATCH] Make pop up open on the side of the button --- crates/workspace/src/terminal_button.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/workspace/src/terminal_button.rs b/crates/workspace/src/terminal_button.rs index 69914fe6ce..64bf1fa0eb 100644 --- a/crates/workspace/src/terminal_button.rs +++ b/crates/workspace/src/terminal_button.rs @@ -135,7 +135,7 @@ impl TerminalButton { } self.popup_menu.update(cx, |menu, cx| { - menu.show(vec2f(0., 0.), AnchorCorner::TopLeft, menu_options, cx); + menu.show(vec2f(0., 0.), AnchorCorner::TopRight, menu_options, cx); }); } }