diff --git a/ConfigGUI/KeywordPicker.Designer.cs b/ConfigGUI/KeywordPicker.Designer.cs index ff3ca25..b3720a1 100644 --- a/ConfigGUI/KeywordPicker.Designer.cs +++ b/ConfigGUI/KeywordPicker.Designer.cs @@ -29,37 +29,38 @@ private void InitializeComponent() { // // pFlow // - this.pFlow.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.pFlow.Location = new System.Drawing.Point( 13, 13 ); + this.pFlow.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.pFlow.Location = new System.Drawing.Point(13, 13); this.pFlow.Name = "pFlow"; - this.pFlow.Size = new System.Drawing.Size( 159, 318 ); + this.pFlow.Size = new System.Drawing.Size(159, 318); this.pFlow.TabIndex = 0; + this.pFlow.Paint += new System.Windows.Forms.PaintEventHandler(this.pFlow_Paint); // // bCancel // this.bCancel.Anchor = System.Windows.Forms.AnchorStyles.Bottom; this.bCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; - this.bCancel.Location = new System.Drawing.Point( 62, 337 ); + this.bCancel.Location = new System.Drawing.Point(62, 337); this.bCancel.Name = "bCancel"; - this.bCancel.Size = new System.Drawing.Size( 60, 23 ); + this.bCancel.Size = new System.Drawing.Size(60, 23); this.bCancel.TabIndex = 1; this.bCancel.Text = "Cancel"; this.bCancel.UseVisualStyleBackColor = true; // // KeywordPicker // - this.AutoScaleDimensions = new System.Drawing.SizeF( 6F, 13F ); + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.CancelButton = this.bCancel; - this.ClientSize = new System.Drawing.Size( 184, 372 ); - this.Controls.Add( this.bCancel ); - this.Controls.Add( this.pFlow ); + this.ClientSize = new System.Drawing.Size(184, 372); + this.Controls.Add(this.bCancel); + this.Controls.Add(this.pFlow); this.Name = "KeywordPicker"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "KeywordPicker"; - this.ResumeLayout( false ); + this.ResumeLayout(false); } diff --git a/ConfigGUI/KeywordPicker.cs b/ConfigGUI/KeywordPicker.cs index 9cd183f..8f8da85 100644 --- a/ConfigGUI/KeywordPicker.cs +++ b/ConfigGUI/KeywordPicker.cs @@ -14,7 +14,7 @@ public sealed partial class KeywordPicker : Form { new KeywordInfo("{PLAYERS}", "Number of players online", "Note that hidden players will not be included in this number." ), new KeywordInfo("{WORLDS}", "Number of worlds", "Number of worlds accessible by the player. Does not count hidden worlds." ), new KeywordInfo("{MOTD}", "MOTD", "Message-of-the-day (server subtitle), as specified in config." ), - new KeywordInfo("{VERSION}", "fCraft version", "Version of fCraft that this server is running." ) + new KeywordInfo("{VERSION}", "800Craft version", "Version of 800Craft that this server is running." ) }; const int ButtonWidth = 150, @@ -49,5 +49,9 @@ public KeywordInfo( string keyword, string name, string description ) { } public readonly string Keyword, LongName, Description; } + + private void pFlow_Paint ( object sender, PaintEventArgs e ) { + + } } } \ No newline at end of file diff --git a/ConfigGUI/KeywordPicker.resx b/ConfigGUI/KeywordPicker.resx index 19dc0dd..d58980a 100644 --- a/ConfigGUI/KeywordPicker.resx +++ b/ConfigGUI/KeywordPicker.resx @@ -112,9 +112,9 @@ 2.0 - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 \ No newline at end of file