PnlSuspension.RandomizeOffset: Avoid 0 value assignment.

This commit is contained in:
2018-01-02 08:40:19 +01:00
parent 4e987413ae
commit b493cf660c

View File

@@ -98,7 +98,7 @@ namespace VAR.Toolbox.UI
private void RandomizeOffset()
{
numOffset.Value = (rnd.Next() % 600);
numOffset.Value = (rnd.Next() % 599) + 1;
}
private void ResetCountdown()