ControllerConfig - more gracefully handle not having a controller image
This commit is contained in:
parent
c59d8130bb
commit
a24d101f1c
|
@ -248,10 +248,17 @@ namespace BizHawk.Client.EmuHawk
|
|||
private void SetControllerPicture(string controlName)
|
||||
{
|
||||
ControllerImages.TryGetValue(controlName, out var lazyBmp);
|
||||
var bmp = lazyBmp?.Value ?? Properties.Resources.Help;
|
||||
pictureBox1.Image = bmp;
|
||||
pictureBox1.Size = bmp.Size;
|
||||
tableLayoutPanel1.ColumnStyles[1].Width = bmp.Width;
|
||||
if (lazyBmp != null)
|
||||
{
|
||||
var bmp = lazyBmp.Value;
|
||||
pictureBox1.Image = bmp;
|
||||
pictureBox1.Size = bmp.Size;
|
||||
tableLayoutPanel1.ColumnStyles[1].Width = bmp.Width;
|
||||
}
|
||||
else
|
||||
{
|
||||
tableLayoutPanel1.ColumnStyles[1].Width = 0;
|
||||
}
|
||||
|
||||
// Uberhack
|
||||
if (controlName == "Commodore 64 Controller")
|
||||
|
|
Loading…
Reference in New Issue