From fa66b50fc7e7da81e21b7cf9e9656cc262903528 Mon Sep 17 00:00:00 2001 From: Pihkaal Date: Thu, 18 Dec 2025 16:38:05 +0100 Subject: [PATCH] fix: missing button interactions --- app/components/Contact/BottomScreen/BottomScreen.vue | 8 ++++++++ app/composables/useButtonNavigation.ts | 1 + 2 files changed, 9 insertions(+) diff --git a/app/components/Contact/BottomScreen/BottomScreen.vue b/app/components/Contact/BottomScreen/BottomScreen.vue index 4e99456..5a98914 100644 --- a/app/components/Contact/BottomScreen/BottomScreen.vue +++ b/app/components/Contact/BottomScreen/BottomScreen.vue @@ -70,6 +70,14 @@ useScreenClick((x, y) => { actionateButton(selectedButton.value); } }); + +useKeyDown((key) => { + switch (key) { + case "NDS_B": + store.animateOutro(); + break; + } +});