@@ -235,6 +235,7 @@ def create_ghuser_component(source, target, version=None, prefix=None):
235
235
root .SetString ("Name" , prefix + data ["name" ])
236
236
root .SetString ("NickName" , data ["nickname" ])
237
237
root .SetString ("Description" , data .get ("description" , "" ))
238
+ root .SetString ("ToolTip" , data .get ("description" , "" ))
238
239
root .SetInt32 ("Exposure" , data .get ("exposure" , EXPOSURE ["default" ]))
239
240
root .SetString ("Category" , data ["category" ])
240
241
root .SetString ("SubCategory" , data ["subcategory" ])
@@ -280,6 +281,7 @@ def create_ghuser_component(source, target, version=None, prefix=None):
280
281
pi_chunk .SetString ("NickName" , pi .get ("nickname" ) or pi ["name" ])
281
282
pi_chunk .SetString ("Description" , pi .get ("description" ))
282
283
pi_chunk .SetBoolean ("Optional" , pi .get ("optional" , True ))
284
+ pi_chunk .SetString ("ToolTip" , pi .get ("description" , "" ))
283
285
pi_chunk .SetBoolean ("AllowTreeAccess" , pi .get ("allowTreeAccess" , True ))
284
286
pi_chunk .SetBoolean ("ShowTypeHints" , pi .get ("showTypeHints" , True ))
285
287
pi_chunk .SetInt32 (
@@ -307,6 +309,7 @@ def create_ghuser_component(source, target, version=None, prefix=None):
307
309
po_chunk .SetString ("NickName" , po .get ("nickname" ) or po ["name" ])
308
310
po_chunk .SetString ("Description" , po .get ("description" ))
309
311
po_chunk .SetBoolean ("Optional" , po .get ("optional" , False ))
312
+ po_chunk .SetString ("ToolTip" , po .get ("description" , "" ))
310
313
po_chunk .SetInt32 ("SourceCount" , po .get ("sourceCount" , 0 ))
311
314
po_chunk .SetGuid ("InstanceGuid" , output_instance_guid )
312
315
po_chunk .SetBoolean ("ReverseData" , po .get ("reverse" , False ))
0 commit comments