intro buttons fixed

This commit is contained in:
Priec
2025-09-04 17:46:32 +02:00
parent d9d8562539
commit c51af13fb1
2 changed files with 2 additions and 2 deletions

View File

@@ -66,7 +66,7 @@ pub async fn handle_navigation_event(
}
"select" => {
let (context, index) = match &router.current {
Page::Intro(state) => (UiContext::Intro, state.selected_option),
Page::Intro(state) => (UiContext::Intro, state.focused_button_index),
Page::Login(state) if state.focus_outside_canvas => {
(UiContext::Login, state.focused_button_index)
}