debugger: Add UI for tweaking breakpoint properties directly from breakpoint list (#33097)

Release Notes:

- debugger: Breakpoint properties (log/hit condition/condition) can now
be set directly from breakpoint list.
This commit is contained in:
Piotr Osiewicz 2025-06-28 23:41:44 +02:00 committed by GitHub
parent 41583fb066
commit e5bcd720e1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 634 additions and 82 deletions

View file

@ -100,7 +100,13 @@ impl DebugPanel {
sessions: vec![],
active_session: None,
focus_handle,
breakpoint_list: BreakpointList::new(None, workspace.weak_handle(), &project, cx),
breakpoint_list: BreakpointList::new(
None,
workspace.weak_handle(),
&project,
window,
cx,
),
project,
workspace: workspace.weak_handle(),
context_menu: None,