Ensure correct black text overrides for fixed white background

- Issue MatterHackers/MCCentral#2514
Adjust print popup menu for forced white background
This commit is contained in:
John Lewin 2017-12-29 09:14:17 -08:00
parent 8804646716
commit 51dc1b1c48
4 changed files with 40 additions and 32 deletions

View file

@ -86,7 +86,12 @@ namespace MatterHackers.MatterControl
};
scrollable.ScrollArea.HAnchor = HAnchor.Stretch;
scrollable.AddChild(
sliceSettingsWidget.CreateGroupContent(section.GroupsList.FirstOrDefault() , sliceSettingsWidget.settingsContext, sliceSettingsWidget.ShowHelpControls));
sliceSettingsWidget.CreateGroupContent(
section.GroupsList.FirstOrDefault(),
sliceSettingsWidget.settingsContext,
sliceSettingsWidget.ShowHelpControls,
ActiveTheme.Instance.PrimaryTextColor));
tabPage.AddChild(scrollable);
}
}