add scrollbar to pathconfig tabpages (fix #594)
This commit is contained in:
parent
68f16a3a79
commit
d06c035df4
|
@ -111,7 +111,8 @@ namespace BizHawk.Client.EmuHawk
|
||||||
{
|
{
|
||||||
Text = systemDisplayName,
|
Text = systemDisplayName,
|
||||||
Name = systemId,
|
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();
|
var paths = pathCollection.Where(x => x.System == systemId).OrderBy(x => x.Ordinal).ThenBy(x => x.Type).ToList();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue