From 9d234a75d8ddf70119fa1690cd881ce208d5b266 Mon Sep 17 00:00:00 2001 From: pdxlocations Date: Fri, 6 Jun 2025 22:45:06 -0700 Subject: [PATCH] change default configs order --- contact/ui/default_config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contact/ui/default_config.py b/contact/ui/default_config.py index feaeb1b..fbce7e8 100644 --- a/contact/ui/default_config.py +++ b/contact/ui/default_config.py @@ -127,8 +127,8 @@ def initialize_config() -> Dict[str, object]: "node_ignored": ["red", "black"], } default_config_variables = { - "node_list_16ths": "5", "channel_list_16ths": "3", + "node_list_16ths": "5", "db_file_path": db_file_path, "log_file_path": log_file_path, "message_prefix": ">>", @@ -176,8 +176,8 @@ def assign_config_variables(loaded_config: Dict[str, object]) -> None: global theme, COLOR_CONFIG global node_sort - node_list_16ths = loaded_config["node_list_16ths"] channel_list_16ths = loaded_config["channel_list_16ths"] + node_list_16ths = loaded_config["node_list_16ths"] db_file_path = loaded_config["db_file_path"] log_file_path = loaded_config["log_file_path"] message_prefix = loaded_config["message_prefix"]