mirror of
https://github.com/leozide/leocad
synced 2025-01-17 18:11:42 +01:00
Only save 4 decimal digits.
This commit is contained in:
parent
94eb5b8ae2
commit
6c23edf064
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@
|
|||
|
||||
QString lcFormatValue(float Value)
|
||||
{
|
||||
QString String = QString::number(Value, 'f', 6);
|
||||
QString String = QString::number(Value, 'f', 4);
|
||||
int Dot = String.indexOf('.');
|
||||
|
||||
if (Dot != -1)
|
||||
|
|
Loading…
Reference in a new issue