Skip to content

Commit c248f28

Browse files
committed
Power button instead of play button
1 parent 0792a6c commit c248f28

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

apps/web/src/lib/jsspeccy/ui/UIController.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import EventEmitter from "events";
22
import {MenuBar} from "./MenuBar";
33
import {Toolbar} from "./Toolbar";
44
import closeIcon from "./icons/close.svg";
5-
import playIcon from "./icons/play.svg";
5+
import powerIcon from "./icons/power.svg";
66

77
export class UIController extends EventEmitter {
88
constructor(container, emulator, opts) {
@@ -40,7 +40,7 @@ export class UIController extends EventEmitter {
4040
this.toolbar = new Toolbar(this.appContainer);
4141

4242
this.startButton = document.createElement('button');
43-
this.startButton.innerHTML = playIcon;
43+
this.startButton.innerHTML = powerIcon;
4444
this.appContainer.appendChild(this.startButton);
4545
this.startButton.style.position = 'absolute';
4646
this.startButton.style.top = '50%';
Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)