Skip to content

Commit

Permalink
hide the big run button in time machine embed frames
Browse files Browse the repository at this point in the history
  • Loading branch information
riknoll committed Oct 26, 2023
1 parent 4faef75 commit cf7fe40
Showing 1 changed file with 1 addition and 1 deletion.
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() &&
<div className="big-play-button-wrapper">
<EditorToolbarButton
className={`big-play-button play-button ${running ? "stop" : "play"}`}
Expand Down

0 comments on commit cf7fe40

Please sign in to comment.