Workflow Update + Bug Fix

- Added new workflow that is compatible with the latest ComfyUI version (as of 4/27/26).
The new workflow also included an option to include custom audio, and has minor improvements of the previous workflows.

- Fixed minor bug with Multi Image Loader
This commit is contained in:
WhatDreamsCost
2026-04-27 21:27:29 -05:00
parent bd8e2d8df1
commit c7ca723686
2 changed files with 7534 additions and 2 deletions

View File

@@ -88,9 +88,35 @@ app.registerExtension({
// entirely eliminating its invisible "ghost" hitbox.
pathsWidget.computeSize = () => [0, -4];
// Hide the actual DOM element
// Aggressively neutralize the actual DOM element AND its ComfyUI wrapper using a global stylesheet
// ComfyUI's background render loop continually overwrites inline styles (like display: none).
// By assigning unique IDs and injecting a global !important CSS rule, we guarantee it remains dead.
if (pathsWidget.element) {
pathsWidget.element.style.display = "none";
const uid = node.id || Math.random().toString(36).substring(2, 9);
pathsWidget.element.id = `hidden-paths-textarea-${uid}`;
if (pathsWidget.element.parentElement) {
pathsWidget.element.parentElement.id = `hidden-paths-wrapper-${uid}`;
}
// Inject the shield-killer style into the document head if it doesn't exist yet
if (!document.getElementById("multi-image-loader-shield-killer")) {
const style = document.createElement("style");
style.id = "multi-image-loader-shield-killer";
style.innerHTML = `
[id^="hidden-paths-textarea-"],
[id^="hidden-paths-wrapper-"] {
display: none !important;
pointer-events: none !important;
position: absolute !important;
width: 0px !important;
height: 0px !important;
opacity: 0 !important;
z-index: -9999 !important;
overflow: hidden !important;
}
`;
document.head.appendChild(style);
}
}
}