Fix textboxes that accidentally got made too wide

This commit is contained in:
baldurk
2015-07-15 22:20:17 +02:00
parent 0933d96fc9
commit 8a402f1a28
+2 -2
View File
@@ -637,7 +637,7 @@
// rangeBlack
//
this.rangeBlack.Name = "rangeBlack";
this.rangeBlack.Size = new System.Drawing.Size(100, 25);
this.rangeBlack.Size = new System.Drawing.Size(50, 25);
this.rangeBlack.Text = "0.0";
this.rangeBlack.Leave += new System.EventHandler(this.rangePoint_Leave);
this.rangeBlack.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.rangePoint_KeyPress);
@@ -646,7 +646,7 @@
// rangeWhite
//
this.rangeWhite.Name = "rangeWhite";
this.rangeWhite.Size = new System.Drawing.Size(100, 25);
this.rangeWhite.Size = new System.Drawing.Size(50, 25);
this.rangeWhite.Text = "1.0";
this.rangeWhite.Leave += new System.EventHandler(this.rangePoint_Leave);
this.rangeWhite.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.rangePoint_KeyPress);