Skip to content

Commit

Permalink
Fix add variant shape select appearing behind the edit dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
Kruptein committed Jan 31, 2025
1 parent c7940ea commit b3f7518
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/game/ui/settings/shape/VariantSwitcher.vue
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ const variants = toRef(vState, "variants");
:style="{ opacity: variants.length > 1 ? '1.0' : '0.3' }"
@click="swapNext"
/>
<font-awesome-icon id="add-variant" icon="plus-square" title="Add a variant" @click="addVariant" />
<font-awesome-icon id="add-variant" icon="plus-square" title="Add a variant" @click.stop="addVariant" />
<font-awesome-icon
icon="pencil-alt"
title="Edit variant name"
Expand Down

0 comments on commit b3f7518

Please sign in to comment.