Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

hide the big run button in time machine embed frames #9752

Merged
merged 1 commit into from
Oct 26, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion webapp/src/editortoolbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ export class EditorToolbar extends data.Component<ISettingsProps, EditorToolbarS
<div id="editorToolbarArea" role="menu" className="ui column items">
{showUndoRedo && <div className="ui icon buttons">{this.getUndoRedo(computer)}</div>}
{showZoomControls && <div className="ui icon buttons mobile hide">{this.getZoomControl(computer)}</div>}
{targetTheme.bigRunButton &&
{targetTheme.bigRunButton && !pxt.shell.isTimeMachineEmbed() &&
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I love how it's just called "bigRunButton", can't get more explicit than that!

<div className="big-play-button-wrapper">
<EditorToolbarButton
className={`big-play-button play-button ${running ? "stop" : "play"}`}
Expand Down
Loading