All Texture Browser controls should have TabStop disabled to make Tab key work as intended...

This commit is contained in:
MaxED 2015-03-13 12:39:55 +00:00
parent c40d054949
commit 81522c3283

View file

@ -124,6 +124,7 @@ namespace CodeImp.DoomBuilder.Controls
this.showtexturesize.Name = "showtexturesize";
this.showtexturesize.Size = new System.Drawing.Size(105, 17);
this.showtexturesize.TabIndex = 0;
this.showtexturesize.TabStop = false;
this.showtexturesize.Text = "Show image size";
this.showtexturesize.UseVisualStyleBackColor = true;
this.showtexturesize.CheckedChanged += new System.EventHandler(this.showtexturesize_CheckedChanged);