Compositor: Hide value of Image Info node input

The Image Info node has no meaning when nothing is connected to the
input. So hide its value to make this more clear.
This commit is contained in:
Omar Emara
2025-05-27 11:46:50 +03:00
parent 32f7665673
commit 87f437eda6

View File

@@ -15,7 +15,7 @@ namespace blender::nodes::node_composite_image_info_cc {
static void node_declare(NodeDeclarationBuilder &b)
{
b.add_input<decl::Color>("Image").compositor_realization_mode(
b.add_input<decl::Color>("Image").hide_value().compositor_realization_mode(
CompositorInputRealizationMode::None);
b.add_output<decl::Vector>("Dimensions")