mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 22:40:22 +00:00
Changed min and max of NumericUpDown from short to ushort
This commit is contained in:
parent
9fead34917
commit
c83701805b
1 changed files with 2 additions and 2 deletions
|
@ -171,8 +171,8 @@ namespace PKHeX
|
|||
};
|
||||
var mtb = new NumericUpDown
|
||||
{
|
||||
Maximum = short.MaxValue,
|
||||
Minimum = short.MinValue,
|
||||
Maximum = ushort.MaxValue,
|
||||
Minimum = ushort.MinValue,
|
||||
Value = Constants[num[i]],
|
||||
Name = constTag + num[i].ToString("0000"),
|
||||
Margin = Padding.Empty,
|
||||
|
|
Loading…
Reference in a new issue