Compare commits

...

2 Commits
1.3.7 ... 1.3.8

Author SHA1 Message Date
pdxlocations
2e8af740be fix always showing down arrow in settings 2025-04-19 16:16:12 -07:00
pdxlocations
a95f128d8e bump version 2025-04-16 21:50:41 -07:00
3 changed files with 3 additions and 3 deletions

View File

@@ -121,7 +121,7 @@ def display_menu(menu_state: MenuState) -> tuple[object, object]: # curses.wind
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

View File

@@ -121,7 +121,7 @@ def move_highlight(
menu_win.getbegyx()[1],
)
draw_arrows(menu_win, visible_height, max_index, start_index, show_save_option=False)
draw_arrows(menu_win, visible_height, max_index, start_index, show_save_option)
def draw_arrows(

View File

@@ -1,6 +1,6 @@
[project]
name = "contact"
version = "1.3.6"
version = "1.3.7"
description = "This Python curses client for Meshtastic is a terminal-based client designed to manage device settings, enable mesh chat communication, and handle configuration backups and restores."
authors = [
{name = "Ben Lipsey",email = "ben@pdxlocations.com"}