We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3eaf471 commit 595c18cCopy full SHA for 595c18c
MicroEngineerProject/MicroEngineer/Entries/BaseEntry.cs
@@ -156,7 +156,7 @@ public virtual string UnitDisplay
156
if (AltUnit != null && AltUnit.IsActive)
157
return AltUnit.Unit;
158
159
- if (d > 0.001 && d < 1) // mili
+ if (d != 0 && Math.Abs(d) < 1) // mili
160
{
161
return this.MiliUnit ?? this.BaseUnit ?? "";
162
}
0 commit comments