Skip to content

Commit 1eeaf23

Browse files
authored
Remove advanced flag from layers input in EmptyQwenImageLayeredLatentImage node (Comfy-Org#13823)
1 parent aa9d2fc commit 1eeaf23

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

comfy_extras/nodes_qwen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def define_schema(cls):
116116
inputs=[
117117
io.Int.Input("width", default=640, min=16, max=nodes.MAX_RESOLUTION, step=16),
118118
io.Int.Input("height", default=640, min=16, max=nodes.MAX_RESOLUTION, step=16),
119-
io.Int.Input("layers", default=3, min=0, max=nodes.MAX_RESOLUTION, step=1, advanced=True),
119+
io.Int.Input("layers", default=3, min=0, max=nodes.MAX_RESOLUTION, step=1),
120120
io.Int.Input("batch_size", default=1, min=1, max=4096),
121121
],
122122
outputs=[

0 commit comments

Comments
 (0)