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:
Kurt 2020-02-13 10:52:19 -08:00 committed by GitHub
parent ff23d094f0
commit 92b22b9f44
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;