Disable the text overlay banner by default

This commit is contained in:
drozbay 2026-06-26 10:00:24 -06:00
parent 8978d2b2a3
commit 0480cb5bdf

View File

@ -26,7 +26,7 @@ class TextOverlay(IO.ComfyNode):
)
@classmethod
def execute(cls, image, text, font_size_percent=5.0, text_color="white", outline=True, background=True, background_color="auto", margin_percent=1.0) -> IO.NodeOutput:
def execute(cls, image, text, font_size_percent=5.0, text_color="white", outline=True, background=False, background_color="auto", margin_percent=1.0) -> IO.NodeOutput:
if text.strip() == "":
return IO.NodeOutput(image)