diff --git a/ts/image-occlusion/Toolbar.svelte b/ts/image-occlusion/Toolbar.svelte index fd5cfb49e..daec89140 100644 --- a/ts/image-occlusion/Toolbar.svelte +++ b/ts/image-occlusion/Toolbar.svelte @@ -9,13 +9,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html import Popover from "components/Popover.svelte"; import WithFloating from "components/WithFloating.svelte"; - import { - mdiChevronDown, - mdiEye, - mdiFormatAlignCenter, - mdiSquare, - mdiViewDashboard, - } from "./icons"; + import { mdiEye, mdiFormatAlignCenter, mdiSquare, mdiViewDashboard } from "./icons"; import { hideAllGuessOne } from "./store"; import { drawEllipse, drawPolygon, drawRectangle } from "./tools/index"; import { makeMaskTransparent } from "./tools/lib"; @@ -104,16 +98,6 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
(showFloating = !showFloating)}> - {#if $hideAllGuessOne} - - {@html mdiViewDashboard} - - {:else} - - {@html mdiSquare} - - {/if} - - {@html mdiChevronDown} + {#if $hideAllGuessOne} + {@html mdiViewDashboard} + {:else} + {@html mdiSquare} + {/if}