add scrollbar to pathconfig tabpages (fix #594)

This commit is contained in:
zeromus 2016-03-15 00:35:48 -05:00
parent 68f16a3a79
commit d06c035df4
1 changed files with 2 additions and 1 deletions

View File

@ -111,7 +111,8 @@ namespace BizHawk.Client.EmuHawk
{
Text = systemDisplayName,
Name = systemId,
Width = UIHelper.ScaleX(200) // Initial Left/Width of child controls are based on this size.
Width = UIHelper.ScaleX(200), // Initial Left/Width of child controls are based on this size.
AutoScroll = true
};
var paths = pathCollection.Where(x => x.System == systemId).OrderBy(x => x.Ordinal).ThenBy(x => x.Type).ToList();