debugger: Fix regression in rendering of stack frame list (#32682)
Closes #ISSUE Release Notes: - N/A
This commit is contained in:
parent
9427833fdf
commit
2c491d3a66
1 changed files with 4 additions and 1 deletions
|
@ -667,7 +667,10 @@ impl StackFrameList {
|
|||
}
|
||||
|
||||
fn render_list(&mut self, _window: &mut Window, _cx: &mut Context<Self>) -> 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())
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue