mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 08:47:14 +00:00
Fix HOME tracker value GUI character entry length
Closes #2705 It's recommended that you NOT set a "random" value here; instead, let HOME regenerate one for you. Clearing it still functions properly.
This commit is contained in:
parent
ff23d094f0
commit
92b22b9f44
1 changed files with 1 additions and 1 deletions
|
@ -1504,7 +1504,7 @@
|
|||
this.TB_HomeTracker.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.TB_HomeTracker.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.TB_HomeTracker.Location = new System.Drawing.Point(110, 302);
|
||||
this.TB_HomeTracker.MaxLength = 8;
|
||||
this.TB_HomeTracker.MaxLength = 16;
|
||||
this.TB_HomeTracker.Name = "TB_HomeTracker";
|
||||
this.TB_HomeTracker.Size = new System.Drawing.Size(118, 20);
|
||||
this.TB_HomeTracker.TabIndex = 10;
|
||||
|
|
Loading…
Reference in a new issue