mirror of
https://github.com/chylex/Code-Statistics.git
synced 2025-07-27 16:59:08 +02:00
Fix broken decimal format after the code formatting change
This commit is contained in:
parent
2bfe0abc0a
commit
312d86126a
@ -44,7 +44,7 @@ namespace CodeStatisticsCore.Handling{
|
||||
|
||||
public void SetVariable(string name, float value){
|
||||
variablesInt[name] = (int)Math.Round(value);
|
||||
variables[name] = value.ToString("#, 0.#", NumberFormat);
|
||||
variables[name] = value.ToString("#,0.#", NumberFormat);
|
||||
}
|
||||
|
||||
public void Increment(string name, int amount = 1){
|
||||
|
Loading…
Reference in New Issue
Block a user