summaryrefslogtreecommitdiff
path: root/lib/utils/settings.py
diff options
context:
space:
mode:
authorGeorge Steel <george.steel@gmail.com>2024-04-27 14:16:18 -0400
committerGitHub <noreply@github.com>2024-04-27 14:16:18 -0400
commit05ca4132f17a581939fd0b206319f215248e5232 (patch)
treebac063a76fe7d6f4549cd0f50158735b9fc99dd1 /lib/utils/settings.py
parentf715f2dfb0074d941c23719812e5bf08f5255412 (diff)
Add option to disable the stitch plan cache (#2655)
Setting the cache size to 0 bypasses the cache completely. This is necessary during development to ensure newly-changed code actually gets run. Also fixes the error pane in the params gui. * make params warning pane large enough to see contents * rename sizers in preferences dialog descriptive names * add shapely version bound * add option to disable stitch plan cache * remove out-of-date wxg file * make a cache size of 0 disable the cache
Diffstat (limited to 'lib/utils/settings.py')
-rw-r--r--lib/utils/settings.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/utils/settings.py b/lib/utils/settings.py
index 51cfcdb8..44310537 100644
--- a/lib/utils/settings.py
+++ b/lib/utils/settings.py
@@ -13,7 +13,7 @@ DEFAULT_METADATA = {
DEFAULT_SETTINGS = {
"cache_size": 100,
- "pop_out_simulator": False
+ "pop_out_simulator": False,
}