提交 0ff8232d 编写于 作者: S Serge Rider

Numeric value editor fix (allow dot as floating point separator)

上级 906a971e
......@@ -123,7 +123,7 @@ public class UIUtils {
{
DecimalFormatSymbols symbols = DecimalFormatSymbols.getInstance(locale);
final char[] allowedChars = new char[] { symbols.getDecimalSeparator(), symbols.getGroupingSeparator(),
symbols.getMinusSign(), symbols.getZeroDigit(), symbols.getMonetaryDecimalSeparator(), '+' };
symbols.getMinusSign(), symbols.getZeroDigit(), symbols.getMonetaryDecimalSeparator(), '+', '.', ',' };
final String exponentSeparator = symbols.getExponentSeparator();
return new VerifyListener() {
@Override
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册