Remove DisableColor, collapse IsDarkTheme into parent

This commit is contained in:
John Lewin 2018-10-15 08:02:30 -07:00
parent 9a6a8e712d
commit b6a3a5e9cd
15 changed files with 22 additions and 32 deletions

View file

@ -221,14 +221,14 @@ namespace MatterHackers.MatterControl.PartPreviewWindow
RadioImage.DrawCircle(
radioIconChecked.NewGraphics2D(),
rect.Center,
theme.Colors.IsDarkTheme ? Color.White : Color.Black,
theme.Colors.PrimaryTextColor,
isChecked: true,
isActive: false);
RadioImage.DrawCircle(
radioIconUnchecked.NewGraphics2D(),
rect.Center,
theme.Colors.IsDarkTheme ? Color.White : Color.Black,
theme.Colors.PrimaryTextColor,
isChecked: false,
isActive: false);
}