From db3f2537bc5783bd5035811f119211dc90e0ea75 Mon Sep 17 00:00:00 2001 From: Johnny Chan <7546915+jchanvfx@users.noreply.github.com> Date: Fri, 4 Aug 2023 10:05:39 +1200 Subject: [PATCH] Update custom_widget_value_edit.py value changed attr bugfix. --- .../custom_widgets/properties_bin/custom_widget_value_edit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NodeGraphQt/custom_widgets/properties_bin/custom_widget_value_edit.py b/NodeGraphQt/custom_widgets/properties_bin/custom_widget_value_edit.py index fb4516fb..b2ba0f67 100644 --- a/NodeGraphQt/custom_widgets/properties_bin/custom_widget_value_edit.py +++ b/NodeGraphQt/custom_widgets/properties_bin/custom_widget_value_edit.py @@ -141,7 +141,7 @@ def _reset_previous_x(self): self._previous_x = None def _on_text_changed(self): - self.valueChanged.emit(self.get_value()) + self.value_changed.emit(self.get_value()) def _convert_text(self, text): # int("1.0") will return error