setup: renamed node settings form

This commit is contained in:
2023-06-07 14:50:23 +10:00
parent 823d036626
commit 396c7b30dd
2 changed files with 5 additions and 5 deletions

View File

@@ -5,7 +5,7 @@ using SizeF = System.Drawing.SizeF;
namespace FireWallet
{
partial class CreateForm
partial class NodeForm
{
/// <summary>
/// Required designer variable.
@@ -160,7 +160,7 @@ namespace FireWallet
labelNodeIP.TabIndex = 0;
labelNodeIP.Text = "IP:";
//
// CreateForm
// NodeForm
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
@@ -168,7 +168,7 @@ namespace FireWallet
Controls.Add(groupBoxNode);
Controls.Add(labelWelcome);
FormBorderStyle = FormBorderStyle.Fixed3D;
Name = "CreateForm";
Name = "NodeForm";
Text = "Setup";
Load += CreateForm_Load;
Resize += CreateForm_Resize;

View File

@@ -13,10 +13,10 @@ using System.Xml.Linq;
namespace FireWallet
{
public partial class CreateForm : Form
public partial class NodeForm : Form
{
string dir = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\FireWallet\\";
public CreateForm()
public NodeForm()
{
InitializeComponent();
}