From 3f78eccc9d9347964d9c529d2218a05f21b2d2ca Mon Sep 17 00:00:00 2001 From: John Lewin Date: Mon, 29 Oct 2018 16:27:04 -0700 Subject: [PATCH] Revise dialog theme colors --- MatterControlLib/SetupWizard/DialogPage.cs | 2 +- MatterControlLib/SetupWizard/DialogWindow.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/MatterControlLib/SetupWizard/DialogPage.cs b/MatterControlLib/SetupWizard/DialogPage.cs index 44c9e8d7e..6c811b7db 100644 --- a/MatterControlLib/SetupWizard/DialogPage.cs +++ b/MatterControlLib/SetupWizard/DialogPage.cs @@ -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 }; diff --git a/MatterControlLib/SetupWizard/DialogWindow.cs b/MatterControlLib/SetupWizard/DialogWindow.cs index e35d09373..57deb4d61 100644 --- a/MatterControlLib/SetupWizard/DialogWindow.cs +++ b/MatterControlLib/SetupWizard/DialogWindow.cs @@ -177,7 +177,7 @@ namespace MatterHackers.MatterControl private void SetBackgroundColor() { - this.BackgroundColor = theme.InactiveTabColor; + this.BackgroundColor = theme.ActiveTabColor; } } } \ No newline at end of file