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-03 01:26:41 +00:00
committed by GitHub
parent 7c1ae9bcc3
commit 4a5c55a8f2
+2 -2
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(),