increase thumnails

This commit is contained in:
Vladimir Mandic
2023-04-26 14:48:12 -04:00
parent 8ee0b47f51
commit 5ce8ef68a7
2 changed files with 4 additions and 2 deletions
+2
View File
@@ -317,4 +317,6 @@ svg.feather.feather-image, .feather .feather-image { display: none }
--button-small-text-size: var(--text-md);
--button-small-text-weight: 400;
--button-transition: none;
--size-9: 64px;
--size-14: 64px;
}
+2 -2
View File
@@ -350,11 +350,11 @@ class ScriptRunner:
shared.total_tqdm.clear()
return processed
def process(self, p):
def process(self, p, **kwargs):
for script in self.alwayson_scripts:
try:
script_args = p.script_args[script.args_from:script.args_to]
script.process(p, *script_args)
script.process(p, *script_args, **kwargs)
except Exception as e:
errors.display(e, f'Running script process: {script.filename}')