Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikou27 committed Apr 25, 2022
2 parents 8ec6a4e + 5f9b38b commit 54d6c45
Show file tree
Hide file tree
Showing 222 changed files with 15,691 additions and 3,965 deletions.
3 changes: 3 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# These are supported funding model platforms

custom: https://www.paypal.com/donate/?hosted_button_id=P3NVBYRQ4Z45L
83 changes: 0 additions & 83 deletions Master/NucleusCoopTool/Controls/GameNameControl.cs

This file was deleted.

120 changes: 0 additions & 120 deletions Master/NucleusCoopTool/Controls/GameNameControl.resx

This file was deleted.

43 changes: 22 additions & 21 deletions Master/NucleusCoopTool/Forms/BaseForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ public class BaseForm : Form, IDynamicSized
public readonly IniFile ini = new IniFile(Path.Combine(Directory.GetCurrentDirectory(), "Settings.ini"));
public BaseForm()
{
//SystemEvents.DisplaySettingsChanged += new EventHandler(SystemEvents_DisplaySettingsChanged);

Name = "BaseForm";
Text = "BaseForm";
// Default DPI = 96 = 100%
Expand All @@ -27,34 +25,22 @@ public BaseForm()
// 12 * 300% = 36
// 12 * 125% = 15
// 12 * 150% = 18
//AutoScaleMode = AutoScaleMode.Font;

// BackColor = Color.FromArgb(50, 50, 50);
// ForeColor = Color.White;
// Margin = new Padding(4, 4, 4, 4);


// create it here, else the desgienr will show the default windows font
//Font = new Font("Segoe UI", 9, GraphicsUnit.Point);
Font = new Font("Franklin Gothic Medium",9.75f, GraphicsUnit.Point);


DPIManager.Register(this);
}



~BaseForm()
{
//DPIManager.Unregister(this);
DPIManager.Unregister(this);
}

//private void SystemEvents_DisplaySettingsChanged(object sender, EventArgs e)
//{
// DPIManager.ForceUpdate();
//}

public void UpdateSize(float scale)
{
if (IsDisposed)
{
DPIManager.Unregister(this);
return;
}
}

/// <summary>
Expand All @@ -77,5 +63,20 @@ public void SetUpForm(System.Windows.Forms.Form f)
Point desktop = this.DesktopLocation;
f.SetDesktopLocation(desktop.X + 100, desktop.Y + 100);
}

private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(BaseForm));
this.SuspendLayout();
//
// BaseForm
//
this.ClientSize = new System.Drawing.Size(284, 261);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "BaseForm";
this.Text = "Nucleus Co-op";
this.ResumeLayout(false);

}
}
}
Loading

0 comments on commit 54d6c45

Please sign in to comment.