From 5b8a5f95037692847696a3b4ee58463d45043fe4 Mon Sep 17 00:00:00 2001 From: adelikat Date: Mon, 29 Jul 2013 00:28:56 +0000 Subject: [PATCH] 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 --- .../config/ControllerConfig/ControllerConfigPanel.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.MultiClient/config/ControllerConfig/ControllerConfigPanel.cs b/BizHawk.MultiClient/config/ControllerConfig/ControllerConfigPanel.cs index 600a0c4d6a..a4b1e65ff3 100644 --- a/BizHawk.MultiClient/config/ControllerConfig/ControllerConfigPanel.cs +++ b/BizHawk.MultiClient/config/ControllerConfig/ControllerConfigPanel.cs @@ -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 Inputs = new List(); @@ -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);