fix: correct IPAdapter widget parameter order

- IPAdapter node expects 4 parameters: weight, start_at, end_at, weight_type
- Previous had 6 parameters with wrong order causing validation errors
- Now correctly ordered: [0.75, 0.0, 1.0, 'style transfer']
- Fixes: 'end_at' receiving 'style transfer' and weight_type receiving 0
This commit is contained in:
2025-11-23 08:57:27 +01:00
parent c1014cbbde
commit 2bfc189c70

View File

@@ -197,10 +197,8 @@
"widgets_values": [
0.75,
0.0,
"style transfer",
0.0,
1.0,
false
"style transfer"
],
"title": "Apply IP-Adapter Style"
},