Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Jan 19, 2024
2 parents bc00234 + 1aaac0b commit 4e3d1a4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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:
NodePropWidget: 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
2 changes: 1 addition & 1 deletion NodeGraphQt/pkg_info.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
__version__ = '0.6.32'
__version__ = '0.6.33'
__status__ = 'Work in Progress'
__license__ = 'MIT'

Expand Down

0 comments on commit 4e3d1a4

Please sign in to comment.