From d7b2dc5bc1bbb88324917780c6bf8f8a39b8e255 Mon Sep 17 00:00:00 2001 From: "Kevin E. Pope" Date: Thu, 17 Sep 2015 18:25:35 -0700 Subject: [PATCH] Adjust menu border colors. --- Queue/QueueDataWidget.cs | 2 +- SlicerConfiguration/SliceSettingsWidget.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Queue/QueueDataWidget.cs b/Queue/QueueDataWidget.cs index 8be871399..26645a3bb 100644 --- a/Queue/QueueDataWidget.cs +++ b/Queue/QueueDataWidget.cs @@ -132,7 +132,7 @@ namespace MatterHackers.MatterControl.PrintQueue moreMenu = new DropDownMenu("More".Localize() + "... "); moreMenu.NormalColor = new RGBA_Bytes(); moreMenu.BorderWidth = 1; - moreMenu.BorderColor = ActiveTheme.Instance.SecondaryTextColor; + moreMenu.BorderColor = new RGBA_Bytes(ActiveTheme.Instance.SecondaryTextColor,100); moreMenu.MenuAsWideAsItems = false; moreMenu.VAnchor = VAnchor.ParentBottomTop; moreMenu.Margin = new BorderDouble(3, 3); diff --git a/SlicerConfiguration/SliceSettingsWidget.cs b/SlicerConfiguration/SliceSettingsWidget.cs index 0ffb8f478..0b0f7c086 100644 --- a/SlicerConfiguration/SliceSettingsWidget.cs +++ b/SlicerConfiguration/SliceSettingsWidget.cs @@ -149,6 +149,7 @@ namespace MatterHackers.MatterControl.SlicerConfiguration settingsDetailSelector.SelectionChanged += new EventHandler(SettingsDetail_SelectionChanged); settingsDetailSelector.VAnchor = VAnchor.ParentCenter; settingsDetailSelector.Margin = new BorderDouble(5, 3); + settingsDetailSelector.BorderColor = new RGBA_Bytes(ActiveTheme.Instance.SecondaryTextColor, 100); this.AddChild(settingsDetailSelector); this.AddChild(GetSliceOptionsMenuDropList()); @@ -161,11 +162,10 @@ namespace MatterHackers.MatterControl.SlicerConfiguration sliceOptionsMenuDropList = new DropDownMenu("Options".Localize() + "... "); sliceOptionsMenuDropList.HoverColor = new RGBA_Bytes(0, 0, 0, 50); sliceOptionsMenuDropList.NormalColor = new RGBA_Bytes(0, 0, 0, 0); - sliceOptionsMenuDropList.BorderColor = new RGBA_Bytes(0, 0, 0, 0); + sliceOptionsMenuDropList.BorderColor = new RGBA_Bytes(ActiveTheme.Instance.SecondaryTextColor, 100); sliceOptionsMenuDropList.BackgroundColor = new RGBA_Bytes(0, 0, 0, 0); sliceOptionsMenuDropList.BorderWidth = 1; sliceOptionsMenuDropList.VAnchor |= VAnchor.ParentCenter; - sliceOptionsMenuDropList.BorderColor = ActiveTheme.Instance.SecondaryTextColor; sliceOptionsMenuDropList.SelectionChanged += new EventHandler(MenuDropList_SelectionChanged); SetMenuItems();