[jaxx] branch develop updated (1036da4 -> 57f82c7)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository jaxx. See http://git.nuiton.org/jaxx.git from 1036da4 better call of actionContext.setActionInProgress(this, false); new 57f82c7 fixes #3517 Value of number cell editor not save when clicking outside a table fixes #3518 Number cell editor in edition on focus The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit 57f82c7cddb1d7147177c2d6bb0c4407f4ef2768 Author: Kevin Morin <morin@codelutin.com> Date: Wed Sep 24 17:08:31 2014 +0200 fixes #3517 Value of number cell editor not save when clicking outside a table fixes #3518 Number cell editor in edition on focus Summary of changes: .../src/main/java/jaxx/runtime/swing/editor/cell/NumberCellEditor.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository jaxx. See http://git.nuiton.org/jaxx.git commit 57f82c7cddb1d7147177c2d6bb0c4407f4ef2768 Author: Kevin Morin <morin@codelutin.com> Date: Wed Sep 24 17:08:31 2014 +0200 fixes #3517 Value of number cell editor not save when clicking outside a table fixes #3518 Number cell editor in edition on focus --- .../src/main/java/jaxx/runtime/swing/editor/cell/NumberCellEditor.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jaxx-widgets/src/main/java/jaxx/runtime/swing/editor/cell/NumberCellEditor.java b/jaxx-widgets/src/main/java/jaxx/runtime/swing/editor/cell/NumberCellEditor.java index ed79ff6..f3dd1fe 100644 --- a/jaxx-widgets/src/main/java/jaxx/runtime/swing/editor/cell/NumberCellEditor.java +++ b/jaxx-widgets/src/main/java/jaxx/runtime/swing/editor/cell/NumberCellEditor.java @@ -90,7 +90,8 @@ public class NumberCellEditor<E extends Number> extends AbstractCellEditor @Override public void focusLost(FocusEvent e) { - cancelCellEditing(); + // remove this to enable the change +// cancelCellEditing(); } @Override -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.
participants (1)
-
nuiton.org scm