Remove tooltip from automation undo redo control

This commit is contained in:
Andrew Kingston 2023-09-22 09:16:23 +01:00
parent 5863d069ca
commit 41eaaaa471
1 changed files with 0 additions and 2 deletions

View File

@ -38,14 +38,12 @@
hoverable
on:click={store.undo}
disabled={!$store.canUndo}
tooltip="Undo latest change"
/>
<Icon
name="Redo"
hoverable
on:click={store.redo}
disabled={!$store.canRedo}
tooltip="Redo latest undo"
/>
</div>