Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS will be completely phased out by mid-2025. To see alternatives please check here

Skip to content
Snippets Groups Projects
Commit 94f6851a authored by Markus Quaritsch's avatar Markus Quaritsch
Browse files

sort tyre dimensions in axle dialog for better usability

parent 41dd4ce0
No related branches found
Tags Build/v0.7.1.2108
No related merge requests found
......@@ -29,7 +29,7 @@ Public Class VehicleAxleDialog
InitializeComponent()
CbWheels.Items.Add("-")
CbWheels.Items.AddRange(DeclarationData.Wheels.GetWheelsDimensions())
CbWheels.Items.AddRange(DeclarationData.Wheels.GetWheelsDimensions().OrderBy(function(s) s).ToArray())
cbAxleType.Items.Clear()
cbAxleType.ValueMember = "Value"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment