Made the oem selection menu have scrolling.

This commit is contained in:
larsbrubaker 2014-05-08 17:20:18 -07:00
parent df8b440ed4
commit 9f94eccf59
2 changed files with 2 additions and 2 deletions

View file

@ -20,7 +20,7 @@ namespace MatterHackers.MatterControl
{
string defaultManufacturerLabel = LocalizedString.Get("Select Make");
string defaultManufacturerLabelFull = string.Format("- {0} -", defaultManufacturerLabel);
ManufacturerDropList = new StyledDropDownList(defaultManufacturerLabelFull);
ManufacturerDropList = new StyledDropDownList(defaultManufacturerLabelFull, maxHeight: 300);
bool addOther = false;
string[] printerWhiteListStrings = OemSettings.Instance.PrinterWhiteList.ToArray();
string pathToManufacturers = Path.Combine(ApplicationDataStorage.Instance.ApplicationStaticDataPath, "PrinterSettings");