Skip to content

Commit

Permalink
renamed prop_widget func to get_property_editor_widget
Browse files Browse the repository at this point in the history
  • Loading branch information
jchanvfx committed Jan 19, 2024
1 parent a13470b commit 0bdb2be
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -856,15 +856,15 @@ def clear_bin(self):
"""
self._prop_list.setRowCount(0)

def prop_widget(self, node):
def get_property_editor_widget(self, node):
"""
Returns the node property widget.
Returns the node property editor widget.
Args:
node (str or NodeGraphQt.NodeObject): node id or node object.
Returns:
NodePropEditorWidget: node property widget.
NodePropEditorWidget: node property editor widget.
"""
node_id = node if isinstance(node, str) else node.id
itm_find = self._prop_list.findItems(node_id, QtCore.Qt.MatchExactly)
Expand Down

0 comments on commit 0bdb2be

Please sign in to comment.