resized version label.
This commit is contained in:
parent
e93a3e422a
commit
66a1163192
|
|
@ -12,6 +12,7 @@ using System.Drawing;
|
|||
using System.Drawing.Imaging;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Windows.Forms;
|
||||
|
||||
public class LauncherFuncs
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1075,6 +1075,7 @@ namespace NovetusLauncher
|
|||
//
|
||||
// label11
|
||||
//
|
||||
this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.label11.Location = new System.Drawing.Point(4, 51);
|
||||
this.label11.Name = "label11";
|
||||
this.label11.Size = new System.Drawing.Size(47, 25);
|
||||
|
|
|
|||
|
|
@ -211,7 +211,9 @@ namespace NovetusLauncher
|
|||
{
|
||||
if (tabControl1.SelectedTab == tabControl1.TabPages["tabPage2"])//your specific tabname
|
||||
{
|
||||
textBox3.Text = "Loading...";
|
||||
string IP = await SecurityFuncs.GetExternalIPAddressAsync();
|
||||
textBox3.Text = "";
|
||||
string[] lines1 = {
|
||||
SecurityFuncs.Base64Encode(IP),
|
||||
SecurityFuncs.Base64Encode(GlobalVars.RobloxPort.ToString()),
|
||||
|
|
@ -424,7 +426,7 @@ namespace NovetusLauncher
|
|||
label5.Text = GlobalVars.BasePath;
|
||||
label8.Text = Application.ProductVersion;
|
||||
GlobalVars.important = SecurityFuncs.CalculateMD5(Assembly.GetExecutingAssembly().Location);
|
||||
label11.Text = version;
|
||||
label11.Text = version;
|
||||
GlobalVars.Version = version;
|
||||
|
||||
label12.Text = SplashReader.GetSplash();
|
||||
|
|
|
|||
Loading…
Reference in New Issue