Merge pull request #1464 from Sandy10000/master

Fixed issue reported in Armory Forum
This commit is contained in:
Lubos Lenco 2019-11-05 19:08:28 +01:00 committed by GitHub
commit b942a964f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ class ArmObjectSocket(bpy.types.NodeSocket):
layout.label(text=self.name)
else:
row = layout.row(align=True)
row.prop_search(self, 'default_value_get', bpy.context.scene, 'objects', icon='NONE', text='')
row.prop_search(self, 'default_value_get', bpy.context.scene, 'objects', icon='NONE', text=self.name)
op = row.operator('arm.node_eyedrop', text='', icon='EYEDROPPER', emboss=True)
op.socket_index = str(id(self))