mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2025-01-18 14:31:50 +00:00
adjustments
This commit is contained in:
parent
ce843171c7
commit
3cc6e82fe8
8 changed files with 9 additions and 3 deletions
|
@ -274,10 +274,8 @@
|
|||
<Reference Include="Sharpzip, Version=0.85.2.329, Culture=neutral, processorArchitecture=MSIL" />
|
||||
<Reference Include="SlimDX, Version=1.0.2851.40166, Culture=neutral, processorArchitecture=x86" />
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Drawing" />
|
||||
<Reference Include="System.Windows.Forms" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="Interface\AboutForm.resx">
|
||||
|
|
|
@ -33,7 +33,7 @@ namespace CodeImp.DoomBuilder.Interface
|
|||
public partial class ActionSelectorControl : UserControl
|
||||
{
|
||||
// Constants
|
||||
private const string NUMBER_SEPERATOR = ":\t";
|
||||
private const string NUMBER_SEPERATOR = "\t";
|
||||
|
||||
// Properties
|
||||
public bool Empty { get { return (number.Text.Length == 0); } set { if(value) number.Text = ""; } }
|
||||
|
|
1
Source/Interface/ConfigForm.Designer.cs
generated
1
Source/Interface/ConfigForm.Designer.cs
generated
|
@ -409,6 +409,7 @@ namespace CodeImp.DoomBuilder.Interface
|
|||
this.Name = "ConfigForm";
|
||||
this.Opacity = 0;
|
||||
this.ShowIcon = false;
|
||||
this.ShowInTaskbar = false;
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
||||
this.Text = "Game Configurations";
|
||||
this.tabs.ResumeLayout(false);
|
||||
|
|
1
Source/Interface/FlatBrowserForm.Designer.cs
generated
1
Source/Interface/FlatBrowserForm.Designer.cs
generated
|
@ -83,6 +83,7 @@ namespace CodeImp.DoomBuilder.Interface
|
|||
this.Name = "FlatBrowserForm";
|
||||
this.Opacity = 0;
|
||||
this.ShowIcon = false;
|
||||
this.ShowInTaskbar = false;
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
||||
this.Text = "Browse Flats";
|
||||
this.Activated += new System.EventHandler(this.FlatBrowserForm_Activated);
|
||||
|
|
1
Source/Interface/GridSetupForm.Designer.cs
generated
1
Source/Interface/GridSetupForm.Designer.cs
generated
|
@ -226,6 +226,7 @@ namespace CodeImp.DoomBuilder.Interface
|
|||
this.Name = "GridSetupForm";
|
||||
this.Opacity = 0;
|
||||
this.ShowIcon = false;
|
||||
this.ShowInTaskbar = false;
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
||||
this.Text = "Custom Grid Setup";
|
||||
groupBox1.ResumeLayout(false);
|
||||
|
|
3
Source/Interface/LinedefEditForm.Designer.cs
generated
3
Source/Interface/LinedefEditForm.Designer.cs
generated
|
@ -78,10 +78,12 @@ namespace CodeImp.DoomBuilder.Interface
|
|||
//
|
||||
this.action.BackColor = System.Drawing.SystemColors.Control;
|
||||
this.action.Cursor = System.Windows.Forms.Cursors.Default;
|
||||
this.action.Empty = false;
|
||||
this.action.Location = new System.Drawing.Point(18, 27);
|
||||
this.action.Name = "action";
|
||||
this.action.Size = new System.Drawing.Size(430, 21);
|
||||
this.action.TabIndex = 5;
|
||||
this.action.Value = 402;
|
||||
//
|
||||
// browseaction
|
||||
//
|
||||
|
@ -139,6 +141,7 @@ namespace CodeImp.DoomBuilder.Interface
|
|||
this.MinimizeBox = false;
|
||||
this.Name = "LinedefEditForm";
|
||||
this.Opacity = 0;
|
||||
this.ShowInTaskbar = false;
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
||||
this.Text = "Edit Linedefs";
|
||||
this.actiongroup.ResumeLayout(false);
|
||||
|
|
1
Source/Interface/PreferencesForm.Designer.cs
generated
1
Source/Interface/PreferencesForm.Designer.cs
generated
|
@ -605,6 +605,7 @@ namespace CodeImp.DoomBuilder.Interface
|
|||
this.Name = "PreferencesForm";
|
||||
this.Opacity = 0;
|
||||
this.ShowIcon = false;
|
||||
this.ShowInTaskbar = false;
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
||||
this.Text = "Preferences";
|
||||
this.colorsgroup1.ResumeLayout(false);
|
||||
|
|
1
Source/Interface/TextureBrowserForm.Designer.cs
generated
1
Source/Interface/TextureBrowserForm.Designer.cs
generated
|
@ -83,6 +83,7 @@ namespace CodeImp.DoomBuilder.Interface
|
|||
this.Name = "TextureBrowserForm";
|
||||
this.Opacity = 0;
|
||||
this.ShowIcon = false;
|
||||
this.ShowInTaskbar = false;
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
||||
this.Text = "Browse Textures";
|
||||
this.Activated += new System.EventHandler(this.TextureBrowserForm_Activated);
|
||||
|
|
Loading…
Reference in a new issue