Fix inflation input not allowing negative values

This commit is contained in:
MayNL
2026-04-12 20:07:00 -04:00
parent 21c956f0f2
commit 8a45557f55

View File

@@ -330,10 +330,15 @@
this.inflationUpDown.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(204)))), ((int)(((byte)(204)))), ((int)(((byte)(204)))));
this.inflationUpDown.Location = new System.Drawing.Point(81, 117);
this.inflationUpDown.Maximum = new decimal(new int[] {
9999,
10,
0,
0,
0});
this.inflationUpDown.Minimum = new decimal(new int[] {
10,
0,
0,
-2147483648});
this.inflationUpDown.Name = "inflationUpDown";
this.inflationUpDown.Size = new System.Drawing.Size(73, 20);
this.inflationUpDown.TabIndex = 32;