diff --git a/javascript/black-orange.css b/javascript/black-orange.css index 1bcf4c7fa..5ecdedac1 100644 --- a/javascript/black-orange.css +++ b/javascript/black-orange.css @@ -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; } diff --git a/modules/scripts.py b/modules/scripts.py index 3427f4d9b..55418dc5b 100644 --- a/modules/scripts.py +++ b/modules/scripts.py @@ -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}')