Skip to content

Commit 04a55d5

Browse files
fix: swap essentials_category from CLIPTextEncode to PrimitiveStringMultiline (Comfy-Org#12553)
Remove CLIPTextEncode from Basics essentials category and add PrimitiveStringMultiline (String Multiline) in its place. Amp-Thread-ID: https://ampcode.com/threads/T-019c7efb-d916-7244-8c43-77b615ba0622 Co-authored-by: Jedrzej Kosinski <kosinkadink1@gmail.com>
1 parent 5fb8f06 commit 04a55d5

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

comfy_extras/nodes_primitive.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ def define_schema(cls):
2929
node_id="PrimitiveStringMultiline",
3030
display_name="String (Multiline)",
3131
category="utils/primitive",
32+
essentials_category="Basics",
3233
inputs=[
3334
io.String.Input("value", multiline=True),
3435
],

nodes.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ def INPUT_TYPES(s) -> InputTypeDict:
7070
FUNCTION = "encode"
7171

7272
CATEGORY = "conditioning"
73-
ESSENTIALS_CATEGORY = "Basics"
7473
DESCRIPTION = "Encodes a text prompt using a CLIP model into an embedding that can be used to guide the diffusion model towards generating specific images."
7574
SEARCH_ALIASES = ["text", "prompt", "text prompt", "positive prompt", "negative prompt", "encode text", "text encoder", "encode prompt"]
7675

0 commit comments

Comments
 (0)