Skip to content

Commit 7d84f0d

Browse files
committed
function signature fix.
1 parent 1aaac0b commit 7d84f0d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

NodeGraphQt/custom_widgets/properties_bin/node_property_widgets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -733,7 +733,7 @@ def __on_graph_property_changed(self, node, prop_name, prop_value):
733733
prop_name (str): node property name.
734734
prop_value (object): node property value.
735735
"""
736-
properties_widget = self.prop_widget(node)
736+
properties_widget = self.get_property_editor_widget(node)
737737
if not properties_widget:
738738
return
739739

NodeGraphQt/pkg_info.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/python
22
# -*- coding: utf-8 -*-
3-
__version__ = '0.6.33'
3+
__version__ = '0.6.34'
44
__status__ = 'Work in Progress'
55
__license__ = 'MIT'
66

0 commit comments

Comments
 (0)