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:
parent
7c1ae9bcc3
commit
4a5c55a8f2
1 changed files with 2 additions and 2 deletions
|
@ -147,7 +147,7 @@ impl Render for QuickActionBar {
|
||||||
let run_button = if last_run_debug {
|
let run_button = if last_run_debug {
|
||||||
QuickActionBarButton::new(
|
QuickActionBarButton::new(
|
||||||
"debug",
|
"debug",
|
||||||
IconName::Debug, // TODO: use debug + play icon
|
IconName::PlayBug,
|
||||||
false,
|
false,
|
||||||
Box::new(debugger_ui::Start),
|
Box::new(debugger_ui::Start),
|
||||||
focus_handle.clone(),
|
focus_handle.clone(),
|
||||||
|
@ -162,7 +162,7 @@ impl Render for QuickActionBar {
|
||||||
});
|
});
|
||||||
QuickActionBarButton::new(
|
QuickActionBarButton::new(
|
||||||
"run",
|
"run",
|
||||||
IconName::Play,
|
IconName::PlayAlt,
|
||||||
false,
|
false,
|
||||||
action.boxed_clone(),
|
action.boxed_clone(),
|
||||||
focus_handle.clone(),
|
focus_handle.clone(),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue