3 Commits

Author SHA1 Message Date
copilot-swe-agent[bot]
4ee7e8bfd4 Add .gitignore and remove pycache from repository
Co-authored-by: jags111 <5968619+jags111@users.noreply.github.com>
2026-02-03 23:01:03 +00:00
copilot-swe-agent[bot]
292b444099 Add IS_CHANGED method to TSC_LoRA_Stacker to fix lag
Co-authored-by: jags111 <5968619+jags111@users.noreply.github.com>
2026-02-03 23:00:48 +00:00
copilot-swe-agent[bot]
ffa6fde8f3 Initial plan 2026-02-03 22:58:16 +00:00
3 changed files with 17 additions and 4 deletions

10
.gitignore vendored Normal file
View File

@@ -0,0 +1,10 @@
# Python cache files
__pycache__/
*.pyc
*.pyo
*.pyd
# Compiled files
*.so
*.dll
*.dylib

View File

@@ -326,6 +326,10 @@ class TSC_LoRA_Stacker:
FUNCTION = "lora_stacker"
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):
# Extract values from kwargs

View File

@@ -36,6 +36,7 @@ function toggleWidget(node, widget, show = false, suffix = "") {
node.setSize([node.size[0], newHeight]);
}
const WIDGET_HEIGHT = 24;
// Use for Multiline Widget Nodes (aka Efficient Loaders)
function toggleWidget_2(node, widget, show = false, suffix = "") {
if (!widget || doesInputWithNameExist(node, widget.name)) return;
@@ -51,10 +52,8 @@ function toggleWidget_2(node, widget, show = false, suffix = "") {
widget.computeSize = show ? origProps[widget.name].origComputeSize : () => [0, -4];
if (initialized){
// Calculate the new height for the node based on its computeSize method
// This properly accounts for font size changes and ensures widgets don't overlap
const newHeight = node.computeSize()[1];
node.setSize([node.size[0], newHeight]);
const adjustment = show ? WIDGET_HEIGHT : -WIDGET_HEIGHT;
node.setSize([node.size[0], node.size[1] + adjustment]);
}
}