Browse Source

changed default of LatentBatchSeedBehavior to fixed

pull/2709/head
FizzleDorf 10 months ago committed by GitHub
parent
commit
f2bae7463e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      comfy_extras/nodes_latent.py

2
comfy_extras/nodes_latent.py

@ -126,7 +126,7 @@ class LatentBatchSeedBehavior:
@classmethod
def INPUT_TYPES(s):
return {"required": { "samples": ("LATENT",),
"seed_behavior": (["random", "fixed"],),}}
"seed_behavior": (["random", "fixed"],{"default": "fixed"}),}}
RETURN_TYPES = ("LATENT",)
FUNCTION = "op"

Loading…
Cancel
Save