Fix #139172: group outputs show up in link-drag-search incorrectly

This commit is contained in:
Jacques Lucke
2025-06-09 12:15:07 +02:00
parent 9efc23bb69
commit b58c5f6e77

View File

@@ -295,6 +295,9 @@ static void gather_socket_link_operations(const bContext &C,
}
const bNodeTreeInterfaceSocket &interface_socket =
reinterpret_cast<const bNodeTreeInterfaceSocket &>(item);
if (!(interface_socket.flag & NODE_INTERFACE_SOCKET_INPUT)) {
return true;
}
{
const bke::bNodeSocketType *from_typeinfo = bke::node_socket_type_find(
interface_socket.socket_type);