From 0480cb5bdf28da1768bfd7e5fce39a336cd0c3f7 Mon Sep 17 00:00:00 2001 From: drozbay <17261091+drozbay@users.noreply.github.com> Date: Fri, 26 Jun 2026 10:00:24 -0600 Subject: [PATCH] Disable the text overlay banner by default --- comfy_extras/nodes_text_overlay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy_extras/nodes_text_overlay.py b/comfy_extras/nodes_text_overlay.py index ef05f19fd..6b4b293bb 100644 --- a/comfy_extras/nodes_text_overlay.py +++ b/comfy_extras/nodes_text_overlay.py @@ -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)