Skip to content

Commit

Permalink
Made 'none' control_type default for Load ControlNet++ Model (Single)…
Browse files Browse the repository at this point in the history
… node
  • Loading branch information
Kosinkadink committed Jul 15, 2024
1 parent e7434e9 commit 36fdc79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adv_control/nodes_plusplus.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def INPUT_TYPES(s):
return {
"required": {
"name": (folder_paths.get_filename_list("controlnet"), ),
"control_type": (PlusPlusType._LIST_WITH_NONE,),
"control_type": (PlusPlusType._LIST_WITH_NONE, {"default": PlusPlusType.NONE}, ),
}
}

Expand Down

0 comments on commit 36fdc79

Please sign in to comment.