diff --git a/crates/debugger_ui/src/session/running/stack_frame_list.rs b/crates/debugger_ui/src/session/running/stack_frame_list.rs index 246f582e37..f7b78a7ebb 100644 --- a/crates/debugger_ui/src/session/running/stack_frame_list.rs +++ b/crates/debugger_ui/src/session/running/stack_frame_list.rs @@ -667,7 +667,10 @@ impl StackFrameList { } fn render_list(&mut self, _window: &mut Window, _cx: &mut Context) -> impl IntoElement { - div().p_1().child(list(self.list_state.clone()).size_full()) + div() + .p_1() + .size_full() + .child(list(self.list_state.clone()).size_full()) } }