From fba4642ff84413033b28aa15de2eb7f22d05e211 Mon Sep 17 00:00:00 2001 From: pdxlocations Date: Sat, 25 Jan 2025 16:02:40 -0800 Subject: [PATCH] fix settings crash --- settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings.py b/settings.py index 55d5a28..03e5a52 100644 --- a/settings.py +++ b/settings.py @@ -72,7 +72,7 @@ def move_highlight(old_idx, new_idx, options, show_save_option, menu_win): if show_save_option and new_idx == max_index: # special case highlight "Save" option menu_win.chgat(max_index + 4, (width - len(save_option)) // 2, len(save_option), get_color("settings_save", reverse = True)) else: - menu_win.chgat(new_idx + 3, 4, width - 8, get_color("settings_sensitive") if options[new_idx] in sensitive_settings else get_color("settings_default"), reverse = True) + menu_win.chgat(new_idx + 3, 4, width - 8, get_color("settings_sensitive") if options[new_idx] in sensitive_settings else get_color("settings_default", reverse = True)) menu_win.refresh()