Require and use printer reference rather than static ActivePrinter

This commit is contained in:
John Lewin 2018-11-11 13:22:32 -08:00
parent c5cd0b2ebc
commit e2a6c761a4
2 changed files with 5 additions and 4 deletions

View file

@ -808,7 +808,7 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
if (settingData.QuickMenuSettings.Count > 0
&& settingData.SlicerConfigName == "baud_rate")
{
var dropMenu = new DropMenuWrappedField(uiField, settingData, theme.TextColor, theme);
var dropMenu = new DropMenuWrappedField(uiField, settingData, theme.TextColor, theme, printer);
dropMenu.Initialize(tabIndexForItem);
settingsRow.AddContent(dropMenu.Content);