COntroller config - fix button names from being cut off. This is basically a band-aid around an annoying problem, but it will work until it doesn't

This commit is contained in:
adelikat 2013-07-29 00:28:56 +00:00
parent 05493ca255
commit 5b8a5f9503
1 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ namespace BizHawk.MultiClient
public int MarginTop = 0;
public int Spacing = 24;
public int InputSize = 100;
public int ColumnWidth = 170;
public int ColumnWidth = 210;
public int LabelWidth = 60;
protected List<InputWidget> Inputs = new List<InputWidget>();
@ -149,7 +149,7 @@ namespace BizHawk.MultiClient
{
Location = new Point(x + InputSize + LabelPadding, y + 3),
Text = buttons[i].Replace('_', ' ').Trim(),
Width = LabelWidth
//Width = LabelWidth
};
Controls.Add(l);
Labels.Add(l);