From 555002aaffb3abb2bb0b80191a49e83d21b8e36b Mon Sep 17 00:00:00 2001 From: TSC <112517630+LucianoCirino@users.noreply.github.com> Date: Tue, 5 Sep 2023 20:30:59 -0500 Subject: [PATCH] XY Input: Checkpoint "+VAE" input_mode Fix Fixed an issue where adding Checkpoints would not add the VAE option for when input mode was set to "Ckpt Names+ClipSkip+VAE" --- js/widgethider.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/widgethider.js b/js/widgethider.js index 3642295..d110047 100644 --- a/js/widgethider.js +++ b/js/widgethider.js @@ -173,6 +173,7 @@ function handleVisibility(node, countValue, mode) { } } else if (inputModeValue.includes("Names+Weights") || inputModeValue.includes("+ClipSkip")) { toggleWidget(node, firstWidget, true); + if (inputModeValue.includes("+VAE")){toggleWidget(node, secondWidget, true);} } if (!inputModeValue.includes("Names") && mode !== "LoRA Stacker") { toggleWidget(node, secondWidget, true);