Fix kilo macro not having thousands separators (#2237)

This commit is contained in:
Haselnussbomber 2025-04-09 22:13:27 +02:00 committed by GitHub
parent 499952b3d2
commit bc18198435
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -636,7 +636,7 @@ internal class SeStringEvaluator : IServiceType, ISeStringEvaluator
{
case false when digit == 0:
continue;
case true when i % 3 == 0:
case true when MathF.Log10(i) % 3 == 2:
this.ResolveStringExpression(in context, eSep);
break;
}