Skip to content

Commit

Permalink
Rework again the organic scan gets, fix number issue in organics value
Browse files Browse the repository at this point in the history
  • Loading branch information
robbyxp1 committed May 17, 2023
1 parent caa5ba1 commit 4988ef0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion EDDiscovery/UserControls/Overlays/UserControlOrganics.cs
Expand Up @@ -291,7 +291,7 @@ void DrawGrid()
os.Item2.Species_Localised_Short,
os.Item2.Variant_Localised_Short,
os.Item2.ScanType,
os.Item2.EstimatedValue?.ToStringInvariant("N0") ??""
os.Item2.EstimatedValue?.ToString("N0") ??""
};

dataGridView.Rows.Add(data);
Expand Down
2 changes: 1 addition & 1 deletion EliteDangerousCore

0 comments on commit 4988ef0

Please sign in to comment.