mirror of
https://git.do.srb2.org/STJr/ZoneBuilder.git
synced 2025-01-30 20:50:41 +00:00
forgot to stage
This commit is contained in:
parent
24c2b9896d
commit
cc427694b7
1 changed files with 41 additions and 33 deletions
|
@ -40,7 +40,6 @@ namespace CodeImp.DoomBuilder.BuilderModes
|
|||
this.defaultbrightness = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
|
||||
this.label11 = new System.Windows.Forms.Label();
|
||||
this.groupBox3 = new System.Windows.Forms.GroupBox();
|
||||
this.selectafterundoredo = new System.Windows.Forms.CheckBox();
|
||||
this.additivepaintselect = new System.Windows.Forms.CheckBox();
|
||||
this.autodrawonedit = new System.Windows.Forms.CheckBox();
|
||||
this.syncSelection = new System.Windows.Forms.CheckBox();
|
||||
|
@ -53,6 +52,8 @@ namespace CodeImp.DoomBuilder.BuilderModes
|
|||
this.editnewsector = new System.Windows.Forms.CheckBox();
|
||||
this.additiveselect = new System.Windows.Forms.CheckBox();
|
||||
this.dontusenodes = new System.Windows.Forms.CheckBox();
|
||||
this.switchviewmodes = new System.Windows.Forms.CheckBox();
|
||||
this.selectafterundoredo = new System.Windows.Forms.CheckBox();
|
||||
this.groupBox2 = new System.Windows.Forms.GroupBox();
|
||||
this.splitlinedefsrange = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
|
||||
this.stitchrange = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
|
||||
|
@ -71,7 +72,6 @@ namespace CodeImp.DoomBuilder.BuilderModes
|
|||
this.label10 = new System.Windows.Forms.Label();
|
||||
this.label1 = new System.Windows.Forms.Label();
|
||||
this.heightbysidedef = new System.Windows.Forms.ComboBox();
|
||||
this.switchviewmodes = new System.Windows.Forms.CheckBox();
|
||||
this.mouseselectionthreshold = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
|
||||
this.label16 = new System.Windows.Forms.Label();
|
||||
this.label17 = new System.Windows.Forms.Label();
|
||||
|
@ -150,6 +150,7 @@ namespace CodeImp.DoomBuilder.BuilderModes
|
|||
// defaultfloorheight
|
||||
//
|
||||
this.defaultfloorheight.AllowDecimal = false;
|
||||
this.defaultfloorheight.AllowExpressions = false;
|
||||
this.defaultfloorheight.AllowNegative = true;
|
||||
this.defaultfloorheight.AllowRelative = false;
|
||||
this.defaultfloorheight.ButtonStep = 5;
|
||||
|
@ -177,6 +178,7 @@ namespace CodeImp.DoomBuilder.BuilderModes
|
|||
// defaultceilheight
|
||||
//
|
||||
this.defaultceilheight.AllowDecimal = false;
|
||||
this.defaultceilheight.AllowExpressions = false;
|
||||
this.defaultceilheight.AllowNegative = true;
|
||||
this.defaultceilheight.AllowRelative = false;
|
||||
this.defaultceilheight.ButtonStep = 5;
|
||||
|
@ -204,6 +206,7 @@ namespace CodeImp.DoomBuilder.BuilderModes
|
|||
// defaultbrightness
|
||||
//
|
||||
this.defaultbrightness.AllowDecimal = false;
|
||||
this.defaultbrightness.AllowExpressions = false;
|
||||
this.defaultbrightness.AllowNegative = false;
|
||||
this.defaultbrightness.AllowRelative = false;
|
||||
this.defaultbrightness.ButtonStep = 5;
|
||||
|
@ -246,20 +249,20 @@ namespace CodeImp.DoomBuilder.BuilderModes
|
|||
this.groupBox3.Controls.Add(this.selectafterundoredo);
|
||||
this.groupBox3.Location = new System.Drawing.Point(284, 104);
|
||||
this.groupBox3.Name = "groupBox3";
|
||||
this.groupBox3.Size = new System.Drawing.Size(379, 379);
|
||||
this.groupBox3.Size = new System.Drawing.Size(379, 384);
|
||||
this.groupBox3.TabIndex = 18;
|
||||
this.groupBox3.TabStop = false;
|
||||
this.groupBox3.Text = " Options ";
|
||||
//
|
||||
// selectafterundoredo
|
||||
// additivepaintselect
|
||||
//
|
||||
this.selectafterundoredo.AutoSize = true;
|
||||
this.selectafterundoredo.Location = new System.Drawing.Point(13, 336);
|
||||
this.selectafterundoredo.Name = "selectafterundoredo";
|
||||
this.selectafterundoredo.Size = new System.Drawing.Size(200, 17);
|
||||
this.selectafterundoredo.TabIndex = 12;
|
||||
this.selectafterundoredo.Text = "Select changed map elements after undo/redo";
|
||||
this.selectafterundoredo.UseVisualStyleBackColor = true;
|
||||
this.additivepaintselect.AutoSize = true;
|
||||
this.additivepaintselect.Location = new System.Drawing.Point(13, 137);
|
||||
this.additivepaintselect.Name = "additivepaintselect";
|
||||
this.additivepaintselect.Size = new System.Drawing.Size(233, 17);
|
||||
this.additivepaintselect.TabIndex = 11;
|
||||
this.additivepaintselect.Text = "Additive paint selecting without holding Shift";
|
||||
this.additivepaintselect.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// autodrawonedit
|
||||
//
|
||||
|
@ -269,7 +272,7 @@ namespace CodeImp.DoomBuilder.BuilderModes
|
|||
this.autodrawonedit.Size = new System.Drawing.Size(353, 30);
|
||||
this.autodrawonedit.TabIndex = 11;
|
||||
this.autodrawonedit.Text = "Start drawing when Edit pressed over empty space in Classic modes\r\nInsert new thi" +
|
||||
"ng when Edit pressed over empty space in Things mode";
|
||||
"ng when Edit pressed over empty space in Things mode";
|
||||
this.autodrawonedit.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// syncSelection
|
||||
|
@ -362,16 +365,6 @@ namespace CodeImp.DoomBuilder.BuilderModes
|
|||
this.additiveselect.Text = "Additive selecting without holding Shift";
|
||||
this.additiveselect.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// additivepaintselect
|
||||
//
|
||||
this.additivepaintselect.AutoSize = true;
|
||||
this.additivepaintselect.Location = new System.Drawing.Point(13, 137);
|
||||
this.additivepaintselect.Name = "additivepaintselect";
|
||||
this.additivepaintselect.Size = new System.Drawing.Size(233, 17);
|
||||
this.additivepaintselect.TabIndex = 11;
|
||||
this.additivepaintselect.Text = "Additive paint selecting without holding Shift";
|
||||
this.additivepaintselect.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// dontusenodes
|
||||
//
|
||||
this.dontusenodes.AutoSize = true;
|
||||
|
@ -382,6 +375,26 @@ namespace CodeImp.DoomBuilder.BuilderModes
|
|||
this.dontusenodes.Text = "Use blockmap instead of nodes in Visual Mode (warning: inaccurate)";
|
||||
this.dontusenodes.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// switchviewmodes
|
||||
//
|
||||
this.switchviewmodes.AutoSize = true;
|
||||
this.switchviewmodes.Location = new System.Drawing.Point(13, 287);
|
||||
this.switchviewmodes.Name = "switchviewmodes";
|
||||
this.switchviewmodes.Size = new System.Drawing.Size(317, 17);
|
||||
this.switchviewmodes.TabIndex = 11;
|
||||
this.switchviewmodes.Text = "Switch view modes when switching to the same Classic Mode";
|
||||
this.switchviewmodes.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// selectafterundoredo
|
||||
//
|
||||
this.selectafterundoredo.AutoSize = true;
|
||||
this.selectafterundoredo.Location = new System.Drawing.Point(13, 362);
|
||||
this.selectafterundoredo.Name = "selectafterundoredo";
|
||||
this.selectafterundoredo.Size = new System.Drawing.Size(246, 17);
|
||||
this.selectafterundoredo.TabIndex = 11;
|
||||
this.selectafterundoredo.Text = "Select changed map elements after undo/redo";
|
||||
this.selectafterundoredo.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// groupBox2
|
||||
//
|
||||
this.groupBox2.Controls.Add(this.splitlinedefsrange);
|
||||
|
@ -406,6 +419,7 @@ namespace CodeImp.DoomBuilder.BuilderModes
|
|||
// splitlinedefsrange
|
||||
//
|
||||
this.splitlinedefsrange.AllowDecimal = false;
|
||||
this.splitlinedefsrange.AllowExpressions = false;
|
||||
this.splitlinedefsrange.AllowNegative = false;
|
||||
this.splitlinedefsrange.AllowRelative = false;
|
||||
this.splitlinedefsrange.ButtonStep = 5;
|
||||
|
@ -424,6 +438,7 @@ namespace CodeImp.DoomBuilder.BuilderModes
|
|||
// stitchrange
|
||||
//
|
||||
this.stitchrange.AllowDecimal = false;
|
||||
this.stitchrange.AllowExpressions = false;
|
||||
this.stitchrange.AllowNegative = false;
|
||||
this.stitchrange.AllowRelative = false;
|
||||
this.stitchrange.ButtonStep = 5;
|
||||
|
@ -442,6 +457,7 @@ namespace CodeImp.DoomBuilder.BuilderModes
|
|||
// highlightthingsrange
|
||||
//
|
||||
this.highlightthingsrange.AllowDecimal = false;
|
||||
this.highlightthingsrange.AllowExpressions = false;
|
||||
this.highlightthingsrange.AllowNegative = false;
|
||||
this.highlightthingsrange.AllowRelative = false;
|
||||
this.highlightthingsrange.ButtonStep = 5;
|
||||
|
@ -460,6 +476,7 @@ namespace CodeImp.DoomBuilder.BuilderModes
|
|||
// highlightrange
|
||||
//
|
||||
this.highlightrange.AllowDecimal = false;
|
||||
this.highlightrange.AllowExpressions = false;
|
||||
this.highlightrange.AllowNegative = false;
|
||||
this.highlightrange.AllowRelative = false;
|
||||
this.highlightrange.ButtonStep = 5;
|
||||
|
@ -612,19 +629,10 @@ namespace CodeImp.DoomBuilder.BuilderModes
|
|||
this.heightbysidedef.Size = new System.Drawing.Size(309, 21);
|
||||
this.heightbysidedef.TabIndex = 0;
|
||||
//
|
||||
// switchviewmodes
|
||||
//
|
||||
this.switchviewmodes.AutoSize = true;
|
||||
this.switchviewmodes.Location = new System.Drawing.Point(13, 287);
|
||||
this.switchviewmodes.Name = "switchviewmodes";
|
||||
this.switchviewmodes.Size = new System.Drawing.Size(317, 17);
|
||||
this.switchviewmodes.TabIndex = 11;
|
||||
this.switchviewmodes.Text = "Switch view modes when switching to the same Classic Mode";
|
||||
this.switchviewmodes.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// mouseselectionthreshold
|
||||
//
|
||||
this.mouseselectionthreshold.AllowDecimal = false;
|
||||
this.mouseselectionthreshold.AllowExpressions = false;
|
||||
this.mouseselectionthreshold.AllowNegative = false;
|
||||
this.mouseselectionthreshold.AllowRelative = false;
|
||||
this.mouseselectionthreshold.ButtonStep = 1;
|
||||
|
@ -663,7 +671,7 @@ namespace CodeImp.DoomBuilder.BuilderModes
|
|||
this.MaximizeBox = false;
|
||||
this.MinimizeBox = false;
|
||||
this.Name = "PreferencesForm";
|
||||
this.Opacity = 0;
|
||||
this.Opacity = 0D;
|
||||
this.ShowIcon = false;
|
||||
this.Text = "PreferencesForm";
|
||||
this.tabs.ResumeLayout(false);
|
||||
|
|
Loading…
Reference in a new issue