Fix elevation on go_to_line2

Conrad Irwin created

Change summary

crates/go_to_line2/src/go_to_line.rs | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)

Detailed changes

crates/go_to_line2/src/go_to_line.rs 🔗

@@ -5,7 +5,7 @@ use gpui::{
 };
 use text::{Bias, Point};
 use theme::ActiveTheme;
-use ui::{h_stack, modal, v_stack, Label, LabelColor};
+use ui::{h_stack, v_stack, Label, LabelColor, StyledExt};
 use util::paths::FILE_ROW_COLUMN_DELIMITER;
 use workspace::{Modal, ModalEvent, Workspace};
 
@@ -148,7 +148,8 @@ impl Render for GoToLine {
     type Element = Div<Self>;
 
     fn render(&mut self, cx: &mut ViewContext<Self>) -> Self::Element {
-        modal(cx)
+        div()
+            .elevation_2(cx)
             .context("GoToLine")
             .on_action(Self::cancel)
             .on_action(Self::confirm)