1
I’m using the QDoubleValidator data = new QDoubleValidator(0.00, 1000.00, 2, lineEdit);
However, when inserting the actual value in the lineEdit
he does not resort to the point (.
) as decimal and yes comma separator (,
).
This causes problems when picking the entered value in the field because the program does not pick any value with number using commas.
How to solve this problem by leaving the point (.
) as decimal separator?