ChartWindow: Round PriceInput.Text
All checks were successful
Test / Run tests (push) Successful in 1m44s

This commit is contained in:
2024-06-10 16:30:21 +02:00
parent 6927d44b82
commit f2c2d3270b
2 changed files with 3 additions and 3 deletions

View File

@ -509,7 +509,7 @@ namespace Elwig.Windows {
ChangeMarker(PrimaryMarkedPointPlot, true, ActiveGraph!.GetOechsleAt(PrimaryMarkedPoint), ActiveGraph.GetPriceAt(PrimaryMarkedPoint));
OechsleInput.Text = Highlighted.Graph!.GetOechsleAt(Highlighted.Index).ToString();
PriceInput.Text = Highlighted.Graph.GetPriceAt(Highlighted.Index).ToString();
PriceInput.Text = Math.Round(Highlighted.Graph.GetPriceAt(Highlighted.Index), Season.Precision).ToString();
EnableActionButtons();
} else {