Hi, great job! I've noticed that the masks for Integers do not respect the

Hi, great job! I’ve noticed that the masks for Integers do not respect the setting of the setGroupSeparator (“.”) method. If I set setAutoGroup(false) the component does not show the group separators, and if set setAutoGroup(true) it always shows commas instead of points. Is this my mistake or is there a problem with this mask?

Here is my code:

InputMask mask = new InputMask(Alias.INTEGER);
mask.setGroupSeparator(“.”);
mask.setAutoGroup(true);
mask.extend(field);

Thanks for the addon!