Allow 0 value for step number

This commit is contained in:
Jaex 2022-03-11 07:30:42 +03:00
parent ccf1719b2b
commit df808d89f2

View file

@ -597,7 +597,7 @@ internal void CreateToolbar()
tsddbShapeOptions.DropDownItems.Add(tslnudStepFontSize);
tslnudStartingStepValue = new ToolStripLabeledNumericUpDown(Resources.ShapeManager_CreateToolbar_StartingStepValue);
tslnudStartingStepValue.Content.Minimum = 1;
tslnudStartingStepValue.Content.Minimum = 0;
tslnudStartingStepValue.Content.Maximum = 10000;
tslnudStartingStepValue.Content.ValueChanged = (sender, e) =>
{