diff --git a/pyproject.toml b/pyproject.toml index d75829ef0bacf5ade392a4debd8afc2d1116ad65..2cd1b078d70f43bda83279556b5bfa6d980ae28e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "confighandler" -version = "1.2.0" +version = "1.2.1" authors = [ { name="Christoph Schmidt", email="cschmidt.fs@gmail.com" }, ] diff --git a/src/confighandler/view/fields/FieldViewInt.py b/src/confighandler/view/fields/FieldViewInt.py index f9327290e165669672cfd9c6d2037a586c277c16..ea116f5fe744ac9f2d0866f20b3d71e0f738af25 100644 --- a/src/confighandler/view/fields/FieldViewInt.py +++ b/src/confighandler/view/fields/FieldViewInt.py @@ -43,6 +43,6 @@ class FieldViewInt(FieldView): # pass def _on_value_changed_partial(self, value): - #print(f">>> {self.parent_field.name}: Value changed {value}") + for edit in self.ui_edit_fields: edit.setValue(int(value))