Skip to content

Commit ce424f3

Browse files
committed
fix tooltip issue
1 parent a67efc5 commit ce424f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/gui/src/components/simulator/Simulator.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -661,8 +661,8 @@ function toInt16(value: number) {
661661
:label="sim.running ? 'Pause' : 'Play'"
662662
@click="toggleSimulator('run')"
663663
>
664-
<MdiPause v-if="sim.running" />
665-
<MdiPlay v-else />
664+
<MdiPause v-show="sim.running" />
665+
<MdiPlay v-show="!sim.running" />
666666
</nav-icon>
667667
<nav-icon
668668
label="Reload Object Files"

0 commit comments

Comments
 (0)