From b08ead9641ef9c63a3f686bfdffd777a3210c50d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elias=20D=C3=B6hne?= Date: Mon, 24 Dec 2018 14:35:34 +0100 Subject: [PATCH] More explicit settings description --- stellarisdashboard/dash_server.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/stellarisdashboard/dash_server.py b/stellarisdashboard/dash_server.py index b60b24b..e791e01 100644 --- a/stellarisdashboard/dash_server.py +++ b/stellarisdashboard/dash_server.py @@ -218,7 +218,7 @@ def _convert_python_bool_to_lowercase(py_bool: bool) -> str: "value": current_settings["threads"], "min": 1, "max": config.CPU_COUNT, - "name": "Number of threads", + "name": "Number of threads (applies after restart)", "description": "Maximal number of threads used for reading save files. The new value is applied after restarting the dashboard program.", }, "plot_height": { @@ -240,8 +240,8 @@ def _convert_python_bool_to_lowercase(py_bool: bool) -> str: "save_file_path": { "type": t_str, "value": current_settings["save_file_path"], - "name": "Save file path (Submit empty to reset to default)", - "description": "This controls the path where the dashboard will look for new or updated Stellaris save files. If you leave this input empty, the value will be reset to the default value.", + "name": "Save file path (leave empty to restore default, applies after restart)", + "description": "This controls the path where the dashboard will look for new or updated Stellaris save files. If you leave this input empty, the value will be reset to the default value. The new value is applied after restarting the dashboard program.", }, } return render_template( @@ -705,7 +705,6 @@ def __init__(self, min_date=float("-inf"), system_filter=None, planet_filter=None, faction_filter=None, - scope_threshold=None, ): self.min_date = float(min_date) self.max_date = float(max_date)