From 2c491d3a66bac8d70551f802cc24ff38f7fd1acb Mon Sep 17 00:00:00 2001 From: Piotr Osiewicz <24362066+osiewicz@users.noreply.github.com> Date: Fri, 13 Jun 2025 13:17:03 +0200 Subject: [PATCH] debugger: Fix regression in rendering of stack frame list (#32682) Closes #ISSUE Release Notes: - N/A --- crates/debugger_ui/src/session/running/stack_frame_list.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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()) } }