Fixed bug when spaces are in file paths nothing would launch. Also added a tooltip explaining what a UUID is.

This commit is contained in:
IveBeenAlone
2026-01-18 10:26:43 -05:00
parent 005854f929
commit 80c2985921
4 changed files with 29 additions and 15 deletions

20
Form1.Designer.cs generated
View File

@@ -38,7 +38,7 @@
this.checkUsername = new System.Windows.Forms.CheckBox();
this.checkUUID = new System.Windows.Forms.CheckBox();
this.btnPlay = new System.Windows.Forms.Button();
this.imageList1 = new System.Windows.Forms.ImageList(this.components);
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.SuspendLayout();
//
// textBoxUsername
@@ -62,9 +62,11 @@
this.labelUUID.AutoSize = true;
this.labelUUID.Location = new System.Drawing.Point(12, 94);
this.labelUUID.Name = "labelUUID";
this.labelUUID.Size = new System.Drawing.Size(42, 13);
this.labelUUID.Size = new System.Drawing.Size(67, 13);
this.labelUUID.TabIndex = 5;
this.labelUUID.Text = "8 Digits";
this.labelUUID.Text = "8 Digit UUID";
this.toolTip1.SetToolTip(this.labelUUID, "This is used to store player inventory data,\r\nas well as the username on servers." +
"\r\nIf it is different than the last one you used\r\nyou wont have your inventory.");
this.labelUUID.Click += new System.EventHandler(this.label2_Click);
//
// textBoxUUID
@@ -117,11 +119,13 @@
this.btnPlay.UseVisualStyleBackColor = true;
this.btnPlay.Click += new System.EventHandler(this.button2_Click);
//
// imageList1
// toolTip1
//
this.imageList1.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
this.imageList1.ImageSize = new System.Drawing.Size(16, 16);
this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
this.toolTip1.AutoPopDelay = 10000;
this.toolTip1.InitialDelay = 200;
this.toolTip1.ReshowDelay = 100;
this.toolTip1.ToolTipIcon = System.Windows.Forms.ToolTipIcon.Info;
this.toolTip1.ToolTipTitle = "UUID";
//
// Form1
//
@@ -153,7 +157,7 @@
private System.Windows.Forms.CheckBox checkUsername;
private System.Windows.Forms.CheckBox checkUUID;
private System.Windows.Forms.Button btnPlay;
private System.Windows.Forms.ImageList imageList1;
private System.Windows.Forms.ToolTip toolTip1;
}
}