- Corrected the displayed shortcut keys for the Increase Grid and Decease Grid menu items

- Increased spacing for image previews in the information panels so that long texture names can be fully displayed
This commit is contained in:
codeimp 2009-06-17 21:16:20 +00:00
parent 3c6beb1e68
commit ee7d7ce86a
6 changed files with 150 additions and 69 deletions

View file

@ -54,6 +54,7 @@ namespace CodeImp.DoomBuilder.Controls
this.length = new System.Windows.Forms.Label();
this.action = new System.Windows.Forms.Label();
this.frontpanel = new System.Windows.Forms.GroupBox();
this.frontsector = new System.Windows.Forms.Label();
this.frontlowname = new System.Windows.Forms.Label();
this.frontlowtex = new System.Windows.Forms.Panel();
this.frontmidname = new System.Windows.Forms.Label();
@ -61,14 +62,13 @@ namespace CodeImp.DoomBuilder.Controls
this.fronthighname = new System.Windows.Forms.Label();
this.fronthightex = new System.Windows.Forms.Panel();
this.backpanel = new System.Windows.Forms.GroupBox();
this.backsector = new System.Windows.Forms.Label();
this.backlowname = new System.Windows.Forms.Label();
this.backlowtex = new System.Windows.Forms.Panel();
this.backmidname = new System.Windows.Forms.Label();
this.backmidtex = new System.Windows.Forms.Panel();
this.backhighname = new System.Windows.Forms.Label();
this.backhightex = new System.Windows.Forms.Panel();
this.frontsector = new System.Windows.Forms.Label();
this.backsector = new System.Windows.Forms.Label();
label1 = new System.Windows.Forms.Label();
label4 = new System.Windows.Forms.Label();
label3 = new System.Windows.Forms.Label();
@ -359,24 +359,35 @@ namespace CodeImp.DoomBuilder.Controls
this.frontpanel.Controls.Add(this.frontsector);
this.frontpanel.Controls.Add(this.frontlowname);
this.frontpanel.Controls.Add(this.frontlowtex);
this.frontpanel.Controls.Add(this.frontmidname);
this.frontpanel.Controls.Add(this.frontmidtex);
this.frontpanel.Controls.Add(this.fronthighname);
this.frontpanel.Controls.Add(this.fronthightex);
this.frontpanel.Controls.Add(this.frontmidname);
this.frontpanel.Location = new System.Drawing.Point(467, 0);
this.frontpanel.Name = "frontpanel";
this.frontpanel.Size = new System.Drawing.Size(241, 100);
this.frontpanel.Size = new System.Drawing.Size(257, 100);
this.frontpanel.TabIndex = 2;
this.frontpanel.TabStop = false;
this.frontpanel.Text = " Front ";
//
// frontsector
//
this.frontsector.AutoSize = true;
this.frontsector.BackColor = System.Drawing.SystemColors.Control;
this.frontsector.Location = new System.Drawing.Point(186, 0);
this.frontsector.Name = "frontsector";
this.frontsector.Size = new System.Drawing.Size(60, 14);
this.frontsector.TabIndex = 6;
this.frontsector.Text = "Sector 666";
//
// frontlowname
//
this.frontlowname.Location = new System.Drawing.Point(159, 80);
this.frontlowname.BackColor = System.Drawing.SystemColors.Control;
this.frontlowname.Location = new System.Drawing.Point(170, 80);
this.frontlowname.Name = "frontlowname";
this.frontlowname.Size = new System.Drawing.Size(72, 13);
this.frontlowname.Size = new System.Drawing.Size(82, 13);
this.frontlowname.TabIndex = 5;
this.frontlowname.Text = "BIGDOOR6";
this.frontlowname.Text = "BROWNHUG";
this.frontlowname.TextAlign = System.Drawing.ContentAlignment.TopCenter;
this.frontlowname.UseMnemonic = false;
//
@ -385,18 +396,19 @@ namespace CodeImp.DoomBuilder.Controls
this.frontlowtex.BackColor = System.Drawing.SystemColors.AppWorkspace;
this.frontlowtex.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
this.frontlowtex.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.frontlowtex.Location = new System.Drawing.Point(161, 19);
this.frontlowtex.Location = new System.Drawing.Point(177, 19);
this.frontlowtex.Name = "frontlowtex";
this.frontlowtex.Size = new System.Drawing.Size(68, 60);
this.frontlowtex.TabIndex = 4;
//
// frontmidname
//
this.frontmidname.Location = new System.Drawing.Point(85, 80);
this.frontmidname.BackColor = System.Drawing.SystemColors.Control;
this.frontmidname.Location = new System.Drawing.Point(88, 80);
this.frontmidname.Name = "frontmidname";
this.frontmidname.Size = new System.Drawing.Size(72, 13);
this.frontmidname.Size = new System.Drawing.Size(82, 13);
this.frontmidname.TabIndex = 3;
this.frontmidname.Text = "BIGDOOR6";
this.frontmidname.Text = "BROWNHUG";
this.frontmidname.TextAlign = System.Drawing.ContentAlignment.TopCenter;
this.frontmidname.UseMnemonic = false;
//
@ -405,18 +417,19 @@ namespace CodeImp.DoomBuilder.Controls
this.frontmidtex.BackColor = System.Drawing.SystemColors.AppWorkspace;
this.frontmidtex.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
this.frontmidtex.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.frontmidtex.Location = new System.Drawing.Point(87, 19);
this.frontmidtex.Location = new System.Drawing.Point(95, 19);
this.frontmidtex.Name = "frontmidtex";
this.frontmidtex.Size = new System.Drawing.Size(68, 60);
this.frontmidtex.TabIndex = 2;
//
// fronthighname
//
this.fronthighname.Location = new System.Drawing.Point(11, 80);
this.fronthighname.BackColor = System.Drawing.SystemColors.Control;
this.fronthighname.Location = new System.Drawing.Point(6, 80);
this.fronthighname.Name = "fronthighname";
this.fronthighname.Size = new System.Drawing.Size(72, 13);
this.fronthighname.Size = new System.Drawing.Size(82, 13);
this.fronthighname.TabIndex = 1;
this.fronthighname.Text = "BIGDOOR6";
this.fronthighname.Text = "BROWNHUG";
this.fronthighname.TextAlign = System.Drawing.ContentAlignment.TopCenter;
this.fronthighname.UseMnemonic = false;
//
@ -441,20 +454,31 @@ namespace CodeImp.DoomBuilder.Controls
this.backpanel.Controls.Add(this.backmidtex);
this.backpanel.Controls.Add(this.backhighname);
this.backpanel.Controls.Add(this.backhightex);
this.backpanel.Location = new System.Drawing.Point(714, 0);
this.backpanel.Location = new System.Drawing.Point(730, 0);
this.backpanel.Name = "backpanel";
this.backpanel.Size = new System.Drawing.Size(241, 100);
this.backpanel.Size = new System.Drawing.Size(257, 100);
this.backpanel.TabIndex = 3;
this.backpanel.TabStop = false;
this.backpanel.Text = " Back ";
//
// backsector
//
this.backsector.AutoSize = true;
this.backsector.BackColor = System.Drawing.SystemColors.Control;
this.backsector.Location = new System.Drawing.Point(186, 0);
this.backsector.Name = "backsector";
this.backsector.Size = new System.Drawing.Size(60, 14);
this.backsector.TabIndex = 7;
this.backsector.Text = "Sector 666";
//
// backlowname
//
this.backlowname.Location = new System.Drawing.Point(159, 80);
this.backlowname.BackColor = System.Drawing.SystemColors.Control;
this.backlowname.Location = new System.Drawing.Point(170, 80);
this.backlowname.Name = "backlowname";
this.backlowname.Size = new System.Drawing.Size(72, 13);
this.backlowname.Size = new System.Drawing.Size(82, 13);
this.backlowname.TabIndex = 5;
this.backlowname.Text = "BIGDOOR6";
this.backlowname.Text = "BROWNHUG";
this.backlowname.TextAlign = System.Drawing.ContentAlignment.TopCenter;
this.backlowname.UseMnemonic = false;
//
@ -463,18 +487,19 @@ namespace CodeImp.DoomBuilder.Controls
this.backlowtex.BackColor = System.Drawing.SystemColors.AppWorkspace;
this.backlowtex.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
this.backlowtex.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.backlowtex.Location = new System.Drawing.Point(161, 19);
this.backlowtex.Location = new System.Drawing.Point(177, 19);
this.backlowtex.Name = "backlowtex";
this.backlowtex.Size = new System.Drawing.Size(68, 60);
this.backlowtex.TabIndex = 4;
//
// backmidname
//
this.backmidname.Location = new System.Drawing.Point(85, 80);
this.backmidname.BackColor = System.Drawing.SystemColors.Control;
this.backmidname.Location = new System.Drawing.Point(88, 80);
this.backmidname.Name = "backmidname";
this.backmidname.Size = new System.Drawing.Size(72, 13);
this.backmidname.Size = new System.Drawing.Size(82, 13);
this.backmidname.TabIndex = 3;
this.backmidname.Text = "BIGDOOR6";
this.backmidname.Text = "BROWNHUG";
this.backmidname.TextAlign = System.Drawing.ContentAlignment.TopCenter;
this.backmidname.UseMnemonic = false;
//
@ -483,18 +508,19 @@ namespace CodeImp.DoomBuilder.Controls
this.backmidtex.BackColor = System.Drawing.SystemColors.AppWorkspace;
this.backmidtex.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
this.backmidtex.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.backmidtex.Location = new System.Drawing.Point(87, 19);
this.backmidtex.Location = new System.Drawing.Point(95, 19);
this.backmidtex.Name = "backmidtex";
this.backmidtex.Size = new System.Drawing.Size(68, 60);
this.backmidtex.TabIndex = 2;
//
// backhighname
//
this.backhighname.Location = new System.Drawing.Point(11, 80);
this.backhighname.BackColor = System.Drawing.SystemColors.Control;
this.backhighname.Location = new System.Drawing.Point(6, 80);
this.backhighname.Name = "backhighname";
this.backhighname.Size = new System.Drawing.Size(72, 13);
this.backhighname.Size = new System.Drawing.Size(82, 13);
this.backhighname.TabIndex = 1;
this.backhighname.Text = "BIGDOOR6";
this.backhighname.Text = "BROWNHUG";
this.backhighname.TextAlign = System.Drawing.ContentAlignment.TopCenter;
this.backhighname.UseMnemonic = false;
//
@ -508,26 +534,6 @@ namespace CodeImp.DoomBuilder.Controls
this.backhightex.Size = new System.Drawing.Size(68, 60);
this.backhightex.TabIndex = 0;
//
// frontsector
//
this.frontsector.AutoSize = true;
this.frontsector.BackColor = System.Drawing.SystemColors.Control;
this.frontsector.Location = new System.Drawing.Point(169, 0);
this.frontsector.Name = "frontsector";
this.frontsector.Size = new System.Drawing.Size(60, 14);
this.frontsector.TabIndex = 6;
this.frontsector.Text = "Sector 666";
//
// backsector
//
this.backsector.AutoSize = true;
this.backsector.BackColor = System.Drawing.SystemColors.Control;
this.backsector.Location = new System.Drawing.Point(169, 0);
this.backsector.Name = "backsector";
this.backsector.Size = new System.Drawing.Size(60, 14);
this.backsector.TabIndex = 7;
this.backsector.Text = "Sector 666";
//
// LinedefInfoPanel
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
@ -539,7 +545,7 @@ namespace CodeImp.DoomBuilder.Controls
this.MaximumSize = new System.Drawing.Size(10000, 100);
this.MinimumSize = new System.Drawing.Size(100, 100);
this.Name = "LinedefInfoPanel";
this.Size = new System.Drawing.Size(965, 100);
this.Size = new System.Drawing.Size(1047, 100);
this.infopanel.ResumeLayout(false);
this.infopanel.PerformLayout();
this.frontpanel.ResumeLayout(false);

View file

@ -216,9 +216,6 @@
<metadata name="frontlowtex.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="frontmidname.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="frontmidtex.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
@ -228,6 +225,9 @@
<metadata name="fronthightex.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="frontmidname.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="backpanel.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>

View file

@ -195,9 +195,9 @@ namespace CodeImp.DoomBuilder.Controls
| System.Windows.Forms.AnchorStyles.Left)));
this.ceilingpanel.Controls.Add(this.ceilingname);
this.ceilingpanel.Controls.Add(this.ceilingtex);
this.ceilingpanel.Location = new System.Drawing.Point(335, 0);
this.ceilingpanel.Location = new System.Drawing.Point(349, 0);
this.ceilingpanel.Name = "ceilingpanel";
this.ceilingpanel.Size = new System.Drawing.Size(93, 100);
this.ceilingpanel.Size = new System.Drawing.Size(107, 100);
this.ceilingpanel.TabIndex = 3;
this.ceilingpanel.TabStop = false;
this.ceilingpanel.Text = " Ceiling ";
@ -206,9 +206,9 @@ namespace CodeImp.DoomBuilder.Controls
//
this.ceilingname.Location = new System.Drawing.Point(11, 80);
this.ceilingname.Name = "ceilingname";
this.ceilingname.Size = new System.Drawing.Size(72, 13);
this.ceilingname.Size = new System.Drawing.Size(84, 13);
this.ceilingname.TabIndex = 1;
this.ceilingname.Text = "BIGDOOR6";
this.ceilingname.Text = "BROWNHUG";
this.ceilingname.TextAlign = System.Drawing.ContentAlignment.TopCenter;
//
// ceilingtex
@ -216,7 +216,7 @@ namespace CodeImp.DoomBuilder.Controls
this.ceilingtex.BackColor = System.Drawing.SystemColors.AppWorkspace;
this.ceilingtex.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
this.ceilingtex.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.ceilingtex.Location = new System.Drawing.Point(13, 19);
this.ceilingtex.Location = new System.Drawing.Point(19, 19);
this.ceilingtex.Name = "ceilingtex";
this.ceilingtex.Size = new System.Drawing.Size(68, 60);
this.ceilingtex.TabIndex = 0;
@ -229,7 +229,7 @@ namespace CodeImp.DoomBuilder.Controls
this.floorpanel.Controls.Add(this.floortex);
this.floorpanel.Location = new System.Drawing.Point(236, 0);
this.floorpanel.Name = "floorpanel";
this.floorpanel.Size = new System.Drawing.Size(93, 100);
this.floorpanel.Size = new System.Drawing.Size(107, 100);
this.floorpanel.TabIndex = 4;
this.floorpanel.TabStop = false;
this.floorpanel.Text = " Floor ";
@ -238,9 +238,9 @@ namespace CodeImp.DoomBuilder.Controls
//
this.floorname.Location = new System.Drawing.Point(11, 80);
this.floorname.Name = "floorname";
this.floorname.Size = new System.Drawing.Size(72, 13);
this.floorname.Size = new System.Drawing.Size(84, 13);
this.floorname.TabIndex = 1;
this.floorname.Text = "BIGDOOR6";
this.floorname.Text = "BROWNHUG";
this.floorname.TextAlign = System.Drawing.ContentAlignment.TopCenter;
//
// floortex
@ -248,7 +248,7 @@ namespace CodeImp.DoomBuilder.Controls
this.floortex.BackColor = System.Drawing.SystemColors.AppWorkspace;
this.floortex.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
this.floortex.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.floortex.Location = new System.Drawing.Point(13, 19);
this.floortex.Location = new System.Drawing.Point(19, 19);
this.floortex.Name = "floortex";
this.floortex.Size = new System.Drawing.Size(68, 60);
this.floortex.TabIndex = 0;
@ -263,7 +263,7 @@ namespace CodeImp.DoomBuilder.Controls
this.MaximumSize = new System.Drawing.Size(10000, 100);
this.MinimumSize = new System.Drawing.Size(100, 100);
this.Name = "SectorInfoPanel";
this.Size = new System.Drawing.Size(450, 100);
this.Size = new System.Drawing.Size(481, 100);
this.sectorinfo.ResumeLayout(false);
this.sectorinfo.PerformLayout();
this.ceilingpanel.ResumeLayout(false);

View file

@ -290,7 +290,7 @@ namespace CodeImp.DoomBuilder.Controls
this.spritepanel.Controls.Add(this.spritetex);
this.spritepanel.Location = new System.Drawing.Point(479, 0);
this.spritepanel.Name = "spritepanel";
this.spritepanel.Size = new System.Drawing.Size(93, 100);
this.spritepanel.Size = new System.Drawing.Size(107, 100);
this.spritepanel.TabIndex = 5;
this.spritepanel.TabStop = false;
this.spritepanel.Text = " Sprite ";
@ -299,9 +299,9 @@ namespace CodeImp.DoomBuilder.Controls
//
this.spritename.Location = new System.Drawing.Point(11, 80);
this.spritename.Name = "spritename";
this.spritename.Size = new System.Drawing.Size(72, 13);
this.spritename.Size = new System.Drawing.Size(84, 13);
this.spritename.TabIndex = 1;
this.spritename.Text = "BIGDOOR6";
this.spritename.Text = "BROWNHUG";
this.spritename.TextAlign = System.Drawing.ContentAlignment.TopCenter;
//
// spritetex
@ -309,7 +309,7 @@ namespace CodeImp.DoomBuilder.Controls
this.spritetex.BackColor = System.Drawing.SystemColors.AppWorkspace;
this.spritetex.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
this.spritetex.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.spritetex.Location = new System.Drawing.Point(13, 19);
this.spritetex.Location = new System.Drawing.Point(19, 19);
this.spritetex.Name = "spritetex";
this.spritetex.Size = new System.Drawing.Size(68, 60);
this.spritetex.TabIndex = 0;
@ -323,7 +323,7 @@ namespace CodeImp.DoomBuilder.Controls
this.MaximumSize = new System.Drawing.Size(10000, 100);
this.MinimumSize = new System.Drawing.Size(100, 100);
this.Name = "ThingInfoPanel";
this.Size = new System.Drawing.Size(578, 100);
this.Size = new System.Drawing.Size(650, 100);
this.infopanel.ResumeLayout(false);
this.infopanel.PerformLayout();
this.spritepanel.ResumeLayout(false);

View file

@ -117,19 +117,94 @@
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<metadata name="label5.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label5.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
<metadata name="label4.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label4.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
<metadata name="label3.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label3.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
<metadata name="label2.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label2.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
<metadata name="label1.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="label1.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
<metadata name="infopanel.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="arg5.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="arglbl5.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="arglbl4.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="arg4.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="arglbl3.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="arglbl2.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="arg3.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="arglbl1.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="arg2.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="arg1.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="angle.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="tag.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="position.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="action.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="type.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="spritepanel.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="spritename.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="spritetex.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="$this.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
</root>

View file

@ -499,7 +499,7 @@ namespace CodeImp.DoomBuilder.Windows
//
this.itemgridinc.Name = "itemgridinc";
this.itemgridinc.Size = new System.Drawing.Size(165, 22);
this.itemgridinc.Tag = "builder_gridinc";
this.itemgridinc.Tag = "builder_griddec";
this.itemgridinc.Text = "Increase Grid";
this.itemgridinc.Click += new System.EventHandler(this.InvokeTaggedAction);
//
@ -507,7 +507,7 @@ namespace CodeImp.DoomBuilder.Windows
//
this.itemgriddec.Name = "itemgriddec";
this.itemgriddec.Size = new System.Drawing.Size(165, 22);
this.itemgriddec.Tag = "builder_griddec";
this.itemgriddec.Tag = "builder_gridinc";
this.itemgriddec.Text = "Decrease Grid";
this.itemgriddec.Click += new System.EventHandler(this.InvokeTaggedAction);
//