Revise dialog theme colors

This commit is contained in:
John Lewin 2018-10-29 16:27:04 -07:00
parent 1801d9eb56
commit 3f78eccc9d
2 changed files with 2 additions and 2 deletions

View file

@ -109,7 +109,7 @@ namespace MatterHackers.MatterControl
contentRow = new FlowLayoutWidget(FlowDirection.TopToBottom)
{
Padding = new BorderDouble(10),
BackgroundColor = theme.ActiveTabColor,
BackgroundColor = theme.SectionBackgroundColor,
HAnchor = HAnchor.Stretch,
VAnchor = VAnchor.Stretch
};

View file

@ -177,7 +177,7 @@ namespace MatterHackers.MatterControl
private void SetBackgroundColor()
{
this.BackgroundColor = theme.InactiveTabColor;
this.BackgroundColor = theme.ActiveTabColor;
}
}
}