And I updated to rev 700 to remove the last instance of decimal to comma conversion (added in 592). The rest were removed in 601, so figured there was no harm in removing the last one as it fixed my issue.
(talking about this part inparticular...)
for( unsigned int i=0;i<strlen(szT);i++)
{
if( szT[i]=='.') szT[i]=',';
}After looking at the code and checking back, I realize that it was only an issue if the OK button was pressed, but it was fine if the apply button was pressed first.
Edited by koadic, 02 November 2013 - 10:00 PM.