diff --git a/app/components/Common/Buttons.vue b/app/components/Common/Buttons.vue index 324353e..699127f 100644 --- a/app/components/Common/Buttons.vue +++ b/app/components/Common/Buttons.vue @@ -144,5 +144,14 @@ useKeyDown(({ key, repeated }) => { } }); +const forceAnimateBLabel = () => + animateLabelChange( + (v) => (bButtonOffsetY = v), + (l) => (displayedBLabel = l), + props.bLabel, + ); + +defineExpose({ forceAnimateBLabel }); + defineOptions({ render: () => null });