diff --git a/crates/assistant/src/assistant_panel.rs b/crates/assistant/src/assistant_panel.rs index 58e7ddc38292b6b88a601e0b23483621a3bb046a..385c6f5239435d968b2fd9baa28c96b069d3eab9 100644 --- a/crates/assistant/src/assistant_panel.rs +++ b/crates/assistant/src/assistant_panel.rs @@ -29,7 +29,7 @@ use editor::{ use fs::Fs; use futures::StreamExt; use gpui::{ - canvas, div, point, relative, rems, rgba, uniform_list, Action, AnyElement, AppContext, + canvas, div, point, relative, rems, uniform_list, Action, AnyElement, AppContext, AsyncWindowContext, AvailableSpace, ClipboardItem, Context, EventEmitter, FocusHandle, FocusableView, FontStyle, FontWeight, HighlightStyle, InteractiveElement, IntoElement, Model, ModelContext, ParentElement, Pixels, PromptLevel, Render, SharedString, diff --git a/crates/gpui/src/style.rs b/crates/gpui/src/style.rs index 7e9504d43466570d96ad5441263c8d02b2e555e2..244ccebf2498fb9ff275d0818215a9ba658ffc02 100644 --- a/crates/gpui/src/style.rs +++ b/crates/gpui/src/style.rs @@ -561,6 +561,12 @@ impl From for Fill { } } +impl From for Fill { + fn from(color: Rgba) -> Self { + Self::Color(color.into()) + } +} + impl From for HighlightStyle { fn from(other: TextStyle) -> Self { Self::from(&other)