diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2025-11-07 17:10:03 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-07 17:10:03 +0100 |
| commit | 5a9ae03dc14ea5b68a99581c21a5d8085f1a3243 (patch) | |
| tree | 4b729fbdc8656f3ba75b7dfdd2ccfecdd8718fee /lib/utils/settings.py | |
| parent | 383f164b6d90c0819d49f4fb16deb9efa3e11df2 (diff) | |
Running stitch length sequence (#4034)
* allow running stitch length sequences
* contour fill: fix error message for long stitch length
* satin: fix center underlay stitch length
Diffstat (limited to 'lib/utils/settings.py')
| -rw-r--r-- | lib/utils/settings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/utils/settings.py b/lib/utils/settings.py index b2220ef9..82d8938a 100644 --- a/lib/utils/settings.py +++ b/lib/utils/settings.py @@ -49,7 +49,7 @@ class GlobalSettings(MutableMapping): # We set create=False here because this code is executed on module load # and via imports also runs on generate-inx-files, which with the Nix # package manager is executed with a non-writable home directory. - user_dir = get_user_dir(create=False) + user_dir = get_user_dir(create=True) self._settings_file = os.path.join(user_dir, "settings.json") self._settings = {} |
