From 24f10ca90c0db964fee11b36e73372043291453e Mon Sep 17 00:00:00 2001 From: kijai <40791699+kijai@users.noreply.github.com> Date: Wed, 18 Jun 2025 10:42:57 +0300 Subject: [PATCH] Don't run WidgetToString on each queue... I can't remember the reason for this, if it ever was necessary, it doesn't seem to be anymore... --- nodes/nodes.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nodes/nodes.py b/nodes/nodes.py index 8e07d54..1f6cf47 100644 --- a/nodes/nodes.py +++ b/nodes/nodes.py @@ -806,9 +806,9 @@ The choices are loaded from 'custom_dimensions.json' in the nodes folder. return (latent, int(width), int(height),) class WidgetToString: - @classmethod - def IS_CHANGED(cls, **kwargs): - return float("NaN") + # @classmethod + # def IS_CHANGED(cls, **kwargs): + # return float("NaN") @classmethod def INPUT_TYPES(cls):