debugger: Add support for label presentation hints for stack frames (#32719)
Release Notes: - debugger: Add support for `Label` stack frame kinds Co-authored-by: Remco Smits <djsmits12@gmail.com>
This commit is contained in:
co-authored by
Remco Smits
parent
6650be8e0f
commit
feef68bec7
@@ -148,7 +148,7 @@ impl StackTraceView {
|
||||
|
||||
let stack_frames = self
|
||||
.stack_frame_list
|
||||
.read_with(cx, |list, _| list.flatten_entries(false));
|
||||
.read_with(cx, |list, _| list.flatten_entries(false, false));
|
||||
|
||||
let frames_to_open: Vec<_> = stack_frames
|
||||
.into_iter()
|
||||
@@ -237,7 +237,7 @@ impl StackTraceView {
|
||||
|
||||
let stack_frames = self
|
||||
.stack_frame_list
|
||||
.read_with(cx, |session, _| session.flatten_entries(false));
|
||||
.read_with(cx, |session, _| session.flatten_entries(false, false));
|
||||
|
||||
let active_idx = self
|
||||
.selected_stack_frame_id
|
||||
|
||||
Reference in New Issue
Block a user