[Bf-blender-cvs] [fb034c8e147] functions: fix dot export after recent changes

Jacques Lucke noreply at git.blender.org
Fri Aug 2 19:15:13 CEST 2019


Commit: fb034c8e147dbc8dcc0566105ad4f6a3588d38c3
Author: Jacques Lucke
Date:   Fri Aug 2 17:41:45 2019 +0200
Branches: functions
https://developer.blender.org/rBfb034c8e147dbc8dcc0566105ad4f6a3588d38c3

fix dot export after recent changes

===================================================================

M	source/blender/functions/core/dot_export.cpp

===================================================================

diff --git a/source/blender/functions/core/dot_export.cpp b/source/blender/functions/core/dot_export.cpp
index 796282bec87..8440e49a0db 100644
--- a/source/blender/functions/core/dot_export.cpp
+++ b/source/blender/functions/core/dot_export.cpp
@@ -24,7 +24,7 @@ static std::string get_id(BuilderSocket *socket)
 
 static std::string port_id(BuilderSocket *socket)
 {
-  return get_id(socket);
+  return get_id(socket->node()) + ":" + get_id(socket);
 }
 
 static void insert_node_table(std::stringstream &ss, BuilderNode *node)



More information about the Bf-blender-cvs mailing list