increase initial toolbox size

also increase image size on high dpi
This commit is contained in:
Morilli 2025-03-04 19:54:08 +01:00
parent 843051a2fd
commit 8ba8bd61b4
2 changed files with 2 additions and 1 deletions

View File

@ -51,7 +51,7 @@ namespace BizHawk.Client.EmuHawk
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(140, 183);
this.ClientSize = new System.Drawing.Size(184, 183);
this.Controls.Add(this.ToolBoxStrip);
this.MaximumSize = new System.Drawing.Size(270, 600);
this.MinimumSize = new System.Drawing.Size(135, 39);

View File

@ -33,6 +33,7 @@ namespace BizHawk.Client.EmuHawk
public ToolBox()
{
InitializeComponent();
ToolBoxStrip.ImageScalingSize = UIHelper.Scale(ToolBoxStrip.ImageScalingSize);
Icon = ToolIcon;
}