From d89896ba5cabd16d58b50b08439e9c670797b284 Mon Sep 17 00:00:00 2001 From: Alexis Rolland Date: Mon, 11 May 2026 10:47:47 +0800 Subject: [PATCH] Move load image as mask to image category for consistency with other load image nodes --- nodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodes.py b/nodes.py index 6cee47ee1..27d186f45 100644 --- a/nodes.py +++ b/nodes.py @@ -1772,7 +1772,7 @@ class LoadImageMask(LoadImage): } } - CATEGORY = "image/mask" + CATEGORY = "image" RETURN_TYPES = ("MASK",) FUNCTION = "load_image_mask"