From 43f09292474cef2ca398fdada244b1d3362abb1d Mon Sep 17 00:00:00 2001 From: pdxlocations Date: Sat, 19 Apr 2025 16:23:17 -0700 Subject: [PATCH] fix down arrow in user settings --- contact/ui/user_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contact/ui/user_config.py b/contact/ui/user_config.py index e4ac970..106bba6 100644 --- a/contact/ui/user_config.py +++ b/contact/ui/user_config.py @@ -176,7 +176,7 @@ def display_menu(menu_state: Any) -> tuple[Any, Any, List[str]]: max_index = num_items + (1 if menu_state.show_save_option else 0) - 1 visible_height = menu_win.getmaxyx()[0] - 5 - (2 if menu_state.show_save_option else 0) - draw_arrows(menu_win, visible_height, max_index, menu_state.start_index, show_save_option=False) + draw_arrows(menu_win, visible_height, max_index, menu_state.start_index, menu_state.show_save_option) return menu_win, menu_pad, options