diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2024-11-18 11:12:58 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-18 11:12:58 +0100 |
| commit | e8123b72744b81302f1d264082940b58b3695584 (patch) | |
| tree | 786c9ab5b5bc35f9023f7ce40634bb38f1e3298b /lib/utils | |
| parent | b20ad42733ae54ffb260c0262c5689c87515eae3 (diff) | |
Thread catalog: fix broken path (#3281)
* thread catalog: fix broken path
* apply threadlist: use wxpython to also include custom lists
* apply_palette: save last choice
Diffstat (limited to 'lib/utils')
| -rw-r--r-- | lib/utils/settings.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/utils/settings.py b/lib/utils/settings.py index c0871e49..fb17a6a1 100644 --- a/lib/utils/settings.py +++ b/lib/utils/settings.py @@ -1,6 +1,6 @@ -from collections.abc import MutableMapping import json import os +from collections.abc import MutableMapping from .paths import get_user_dir @@ -15,7 +15,8 @@ DEFAULT_SETTINGS = { "cache_size": 100, "pop_out_simulator": False, "simulator_line_width": 0.1, - "simulator_npp_size": 0.5 + "simulator_npp_size": 0.5, + "last_applied_palette": "" } |
