Mark password field on the settings form as being a password so it is not displayed in plain text.

363964 [2016-08-10 20:42:03]
Mark password field on the settings form as being a password so it is not displayed in plain text.
Filename
PokemonGo/RocketAPI/Window/SettingsForm.Designer.cs
diff --git a/PokemonGo/RocketAPI/Window/SettingsForm.Designer.cs b/PokemonGo/RocketAPI/Window/SettingsForm.Designer.cs
index a0275de..cad6ff2 100644
--- a/PokemonGo/RocketAPI/Window/SettingsForm.Designer.cs
+++ b/PokemonGo/RocketAPI/Window/SettingsForm.Designer.cs
@@ -185,6 +185,7 @@ namespace PokemonGo.RocketAPI.Window
             this.UserPasswordBox.Location = new System.Drawing.Point(96, 71);
             this.UserPasswordBox.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
             this.UserPasswordBox.Name = "UserPasswordBox";
+            this.UserPasswordBox.PasswordChar = '*';
             this.UserPasswordBox.Size = new System.Drawing.Size(158, 21);
             this.UserPasswordBox.TabIndex = 12;
             //
@@ -469,7 +470,7 @@ namespace PokemonGo.RocketAPI.Window
             this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
             this.MinimumSize = new System.Drawing.Size(732, 408);
             this.Name = "SettingsForm";
-            this.Padding = new System.Windows.Forms.Padding(10, 10, 10, 10);
+            this.Padding = new System.Windows.Forms.Padding(10);
             this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
             this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
             this.Text = "Settings";
You may download the files in Public Git.