From 143e166794916abb936d21b866150919d4b6ea2d Mon Sep 17 00:00:00 2001 From: silveroxides Date: Sat, 6 Jun 2026 05:17:39 +0200 Subject: [PATCH] Edit tooltip to no longer mention old previously hardcoded multiple --- comfy_extras/nodes_resolution.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/comfy_extras/nodes_resolution.py b/comfy_extras/nodes_resolution.py index b21778468..53a2970c8 100644 --- a/comfy_extras/nodes_resolution.py +++ b/comfy_extras/nodes_resolution.py @@ -73,10 +73,10 @@ class ResolutionSelector(io.ComfyNode): ], outputs=[ io.Int.Output( - "width", tooltip="Calculated width in pixels (multiple of 8)." + "width", tooltip="Calculated width in pixels multiplied by the selected multiple." ), io.Int.Output( - "height", tooltip="Calculated height in pixels (multiple of 8)." + "height", tooltip="Calculated height in pixels multiplied by the selected multiple." ), ], )