Fix layer visibility icons incorrectly referenced in previous cleanup commit.

This commit is contained in:
Keavon Chambers 2021-05-27 09:26:38 -07:00
parent c205fec0d4
commit c2314df8d5

View file

@ -14,7 +14,7 @@
<LayoutCol :class="'list'">
<div class="layer-row" v-for="layer in layers" :key="layer.path">
<div class="layer-visibility">
<IconButton :icon="layer.visible ? 'Visible' : 'Hidden'" @click="toggleLayerVisibility(layer.path)" :size="24" :title="layer.visible ? 'Visible' : 'Hidden'" />
<IconButton :icon="layer.visible ? 'EyeVisible' : 'EyeHidden'" @click="toggleLayerVisibility(layer.path)" :size="24" :title="layer.visible ? 'Visible' : 'Hidden'" />
</div>
<div class="layer">
<div class="layer-thumbnail"></div>