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:
parent
05493ca255
commit
5b8a5f9503
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue