From 5310e33356d58ebab98b9dba940cb6fba045abe4 Mon Sep 17 00:00:00 2001
From: Danilo Leal <67129314+danilo-leal@users.noreply.github.com>
Date: Fri, 10 Jan 2025 11:35:09 -0300
Subject: [PATCH] assistant2: Fix context strip context popover position in
relation to trigger (#22966)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Little visual adjustment here.
| Before | After |
|--------|--------|
|
|
|
Release Notes:
- N/A
---
crates/assistant2/src/context_strip.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/crates/assistant2/src/context_strip.rs b/crates/assistant2/src/context_strip.rs
index 0dd3a274c1..32a2ce2e11 100644
--- a/crates/assistant2/src/context_strip.rs
+++ b/crates/assistant2/src/context_strip.rs
@@ -196,7 +196,7 @@ impl Render for ContextStrip {
.anchor(gpui::Corner::BottomLeft)
.offset(gpui::Point {
x: px(0.0),
- y: px(-16.0),
+ y: px(-2.0),
})
.with_handle(self.context_picker_menu_handle.clone()),
)