mirror of
https://github.com/jags111/efficiency-nodes-comfyui.git
synced 2026-05-07 01:06:42 -03:00
Compare commits
2 Commits
copilot/fi
...
copilot/fi
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e139816db0 | ||
|
|
e4e93074fe |
10
.gitignore
vendored
10
.gitignore
vendored
@@ -1,10 +0,0 @@
|
|||||||
# Python cache files
|
|
||||||
__pycache__/
|
|
||||||
*.pyc
|
|
||||||
*.pyo
|
|
||||||
*.pyd
|
|
||||||
|
|
||||||
# Compiled files
|
|
||||||
*.so
|
|
||||||
*.dll
|
|
||||||
*.dylib
|
|
||||||
@@ -326,10 +326,6 @@ class TSC_LoRA_Stacker:
|
|||||||
FUNCTION = "lora_stacker"
|
FUNCTION = "lora_stacker"
|
||||||
CATEGORY = "Efficiency Nodes/Stackers"
|
CATEGORY = "Efficiency Nodes/Stackers"
|
||||||
|
|
||||||
@classmethod
|
|
||||||
def IS_CHANGED(cls, **kwargs):
|
|
||||||
return float("nan")
|
|
||||||
|
|
||||||
def lora_stacker(self, input_mode, lora_count, lora_stack=None, **kwargs):
|
def lora_stacker(self, input_mode, lora_count, lora_stack=None, **kwargs):
|
||||||
|
|
||||||
# Extract values from kwargs
|
# Extract values from kwargs
|
||||||
|
|||||||
@@ -36,7 +36,6 @@ function toggleWidget(node, widget, show = false, suffix = "") {
|
|||||||
node.setSize([node.size[0], newHeight]);
|
node.setSize([node.size[0], newHeight]);
|
||||||
}
|
}
|
||||||
|
|
||||||
const WIDGET_HEIGHT = 24;
|
|
||||||
// Use for Multiline Widget Nodes (aka Efficient Loaders)
|
// Use for Multiline Widget Nodes (aka Efficient Loaders)
|
||||||
function toggleWidget_2(node, widget, show = false, suffix = "") {
|
function toggleWidget_2(node, widget, show = false, suffix = "") {
|
||||||
if (!widget || doesInputWithNameExist(node, widget.name)) return;
|
if (!widget || doesInputWithNameExist(node, widget.name)) return;
|
||||||
@@ -52,8 +51,10 @@ function toggleWidget_2(node, widget, show = false, suffix = "") {
|
|||||||
widget.computeSize = show ? origProps[widget.name].origComputeSize : () => [0, -4];
|
widget.computeSize = show ? origProps[widget.name].origComputeSize : () => [0, -4];
|
||||||
|
|
||||||
if (initialized){
|
if (initialized){
|
||||||
const adjustment = show ? WIDGET_HEIGHT : -WIDGET_HEIGHT;
|
// Calculate the new height for the node based on its computeSize method
|
||||||
node.setSize([node.size[0], node.size[1] + adjustment]);
|
// This properly accounts for font size changes and ensures widgets don't overlap
|
||||||
|
const newHeight = node.computeSize()[1];
|
||||||
|
node.setSize([node.size[0], newHeight]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user