Hi dune1982, to change that open the SavePointFile.js file in a text editor and go to line number 58 which currently has this:
code:
for ( var j=0; j < 3; j++ )
{
pt[j] = round( pt[j], Digits );
}
Modify it by adding in a new line like this:
code:
for ( var j=0; j < 3; j++ )
{
pt[j] = round( pt[j], Digits );
pt[j] = pt[j].toString().replace( '.', ',' );
}
That should then make the decimal point separator to be a comma instead of a point. But that may cause problems if you also use a comma as the delimiter between points as well.
- Michael
|