Skip to content

Commit db3f253

Browse files
authored
Update custom_widget_value_edit.py
value changed attr bugfix.
1 parent d9ce381 commit db3f253

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

NodeGraphQt/custom_widgets/properties_bin/custom_widget_value_edit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ def _reset_previous_x(self):
141141
self._previous_x = None
142142

143143
def _on_text_changed(self):
144-
self.valueChanged.emit(self.get_value())
144+
self.value_changed.emit(self.get_value())
145145

146146
def _convert_text(self, text):
147147
# int("1.0") will return error

0 commit comments

Comments
 (0)