Skip to content

Commit

Permalink
Merge pull request #366 from jchanvfx/property_bin_bugfix
Browse files Browse the repository at this point in the history
property bin bugfix
  • Loading branch information
jchanvfx committed Aug 2, 2023
2 parents 0b315f5 + 036b65f commit 4a5a5ce
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def set_data_type(self, data_type):

class _NumberValueEdit(QtWidgets.QLineEdit):

valueChanged = QtCore.Signal(object)
value_changed = QtCore.Signal(object)

def __init__(self, parent=None, data_type=float):
super(_NumberValueEdit, self).__init__(parent)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def __init__(self, parent=None, fields=0):
def _add_item(self, index):
_ledit = _NumberValueEdit()
_ledit.index = index
_ledit.valueChanged.connect(
_ledit.value_changed.connect(
lambda: self._on_value_change(_ledit.get_value(), _ledit.index)
)

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.12'
__version__ = '0.6.13'
__status__ = 'Work in Progress'
__license__ = 'MIT'

Expand Down

0 comments on commit 4a5a5ce

Please sign in to comment.