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();