From 396c7b30dd41c2389eac340906606c8b3f224430 Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Wed, 7 Jun 2023 14:50:23 +1000 Subject: [PATCH] setup: renamed node settings form --- FireWallet/NodeForm.Designer.cs | 6 +++--- FireWallet/NodeForm.cs | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/FireWallet/NodeForm.Designer.cs b/FireWallet/NodeForm.Designer.cs index e196a4c..6c0fb9d 100644 --- a/FireWallet/NodeForm.Designer.cs +++ b/FireWallet/NodeForm.Designer.cs @@ -5,7 +5,7 @@ using SizeF = System.Drawing.SizeF; namespace FireWallet { - partial class CreateForm + partial class NodeForm { /// /// 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; diff --git a/FireWallet/NodeForm.cs b/FireWallet/NodeForm.cs index 8bb0b0d..b0a1e3a 100644 --- a/FireWallet/NodeForm.cs +++ b/FireWallet/NodeForm.cs @@ -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(); }