Make pop up open on the side of the button

Petros Amoiridis created

Change summary

crates/workspace/src/terminal_button.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

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);
         });
     }
 }