From e390875198271ef6f2e16469fd159f4fbad694a2 Mon Sep 17 00:00:00 2001 From: Dowon Date: Sat, 13 Apr 2024 15:48:27 +0900 Subject: [PATCH] fix(scripts): fix SCRIPT_DEFAULT --- adetailer/args.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/adetailer/args.py b/adetailer/args.py index 5dd4577..da21d80 100644 --- a/adetailer/args.py +++ b/adetailer/args.py @@ -247,3 +247,14 @@ BBOX_SORTBY = [ "Area (large to small)", ] MASK_MERGE_INVERT = ["None", "Merge", "Merge and Invert"] + +_script_default = [ + "dynamic_prompting", + "dynamic_thresholding", + "wildcard_recursive", + "wildcards", + "lora_block_weight", + "negpip", + "soft_inpainting", +] +SCRIPT_DEFAULT = "".join(sorted(_script_default))