From 8adfee550b53f2ccbd8de7024b94bc020c90eb8f Mon Sep 17 00:00:00 2001 From: Pihkaal Date: Fri, 13 Feb 2026 17:18:05 +0100 Subject: [PATCH] fix(common): reimplement missing function forceAnimateBLabel --- app/components/Common/Buttons.vue | 9 +++++++++ 1 file changed, 9 insertions(+) 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 });