From dcffcb050f2932dae9411ec33f89967504d9abfc Mon Sep 17 00:00:00 2001 From: John Lewin Date: Sat, 9 Mar 2019 10:00:25 -0800 Subject: [PATCH] Swap to higher contrast hover color --- MatterControlLib/PartPreviewWindow/PopupMenuButton.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/MatterControlLib/PartPreviewWindow/PopupMenuButton.cs b/MatterControlLib/PartPreviewWindow/PopupMenuButton.cs index 46e1be658..2d6b5c26a 100644 --- a/MatterControlLib/PartPreviewWindow/PopupMenuButton.cs +++ b/MatterControlLib/PartPreviewWindow/PopupMenuButton.cs @@ -44,7 +44,8 @@ namespace MatterHackers.MatterControl.PartPreviewWindow { this.theme = theme; this.DisabledColor = theme.DisabledColor; - this.HoverColor = theme.MinimalShade; + this.HoverColor = theme.SlightShade; + this.MouseDownColor = theme.MinimalShade; this.PopupBorderColor = AppContext.MenuTheme.BorderColor40; }