debugger: Use new icons for quick debug/spawn button (#31932)

This PR wires up the new icons that were added in #31784.

Release Notes:

- N/A
This commit is contained in:
Cole Miller 2025-06-02 21:26:41 -04:00 committed by GitHub
parent 7c1ae9bcc3
commit 4a5c55a8f2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -147,7 +147,7 @@ impl Render for QuickActionBar {
let run_button = if last_run_debug {
QuickActionBarButton::new(
"debug",
IconName::Debug, // TODO: use debug + play icon
IconName::PlayBug,
false,
Box::new(debugger_ui::Start),
focus_handle.clone(),
@ -162,7 +162,7 @@ impl Render for QuickActionBar {
});
QuickActionBarButton::new(
"run",
IconName::Play,
IconName::PlayAlt,
false,
action.boxed_clone(),
focus_handle.clone(),