mirror of
https://github.com/vladmandic/automatic
synced 2026-09-13 01:59:42 +02:00
increase thumnails
This commit is contained in:
@@ -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
@@ -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}')
|
||||
|
||||
|
||||
Reference in New Issue
Block a user