From a3f0232641926119781f65d0f24fa1ed928e455d Mon Sep 17 00:00:00 2001 From: pdxlocations Date: Thu, 21 Aug 2025 00:05:06 -0700 Subject: [PATCH] fix save check --- contact/ui/user_config.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/contact/ui/user_config.py b/contact/ui/user_config.py index 562ca99..71773ff 100644 --- a/contact/ui/user_config.py +++ b/contact/ui/user_config.py @@ -331,9 +331,10 @@ def json_editor(stdscr: curses.window, menu_state: Any) -> None: else: # Save button selected save_json(file_path, data) + made_changes = False stdscr.refresh() # config.reload() # This isn't refreshing the file paths as expected - continue + break elif key in (27, curses.KEY_LEFT): # Escape or Left Arrow