From 75ada7102f97f2c6b4a006e581b18e4f1efc506c Mon Sep 17 00:00:00 2001 From: Concedo <39025047+LostRuins@users.noreply.github.com> Date: Mon, 13 Jul 2026 20:32:58 +0800 Subject: [PATCH] exclude z-image from reference image list --- otherarch/sdcpp/sdtype_adapter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/otherarch/sdcpp/sdtype_adapter.cpp b/otherarch/sdcpp/sdtype_adapter.cpp index b0b18cabd..407fb1ca6 100644 --- a/otherarch/sdcpp/sdtype_adapter.cpp +++ b/otherarch/sdcpp/sdtype_adapter.cpp @@ -953,7 +953,7 @@ static sd_audio_t load_audio_from_b64(const std::string& b64audio) { bool supports_reference_images(kcpp_sd::model_info info) { - bool supported = (info.is_wan || info.is_ltx || info.supports_ref_image || info.is_kontext || photomaker_enabled); + bool supported = (info.is_wan || info.is_ltx || info.supports_ref_image || info.is_kontext || photomaker_enabled) && !info.is_zimage; return supported; }