adjustments

This commit is contained in:
codeimp 2007-12-26 01:33:46 +00:00
parent ce843171c7
commit 3cc6e82fe8
8 changed files with 9 additions and 3 deletions

View file

@ -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">

View file

@ -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 = ""; } }

View file

@ -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);

View file

@ -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);

View file

@ -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);

View file

@ -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);

View file

@ -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);

View file

@ -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);