global xyz-grid

This commit is contained in:
Vladimir Mandic
2024-09-12 18:43:44 -04:00
parent 6ab65318ee
commit 0a7f60d637
3 changed files with 835 additions and 2 deletions
+3 -1
View File
@@ -545,7 +545,9 @@ class ScriptRunner:
try:
if (script.args_to > 0) and (script.args_to >= script.args_from):
args = p.per_script_args.get(script.title(), p.script_args[script.args_from:script.args_to])
processed = script.process_images(p, *args, **kwargs)
_processed = script.process_images(p, *args, **kwargs)
if _processed is not None:
processed = _processed
except Exception as e:
errors.display(e, f'Running script process images: {script.filename}')
s.record(script.title())