diff --git a/PartPreviewWindow/OverflowMenuButton.cs b/PartPreviewWindow/OverflowMenuButton.cs index 5c9f120c0..5679ffa7a 100644 --- a/PartPreviewWindow/OverflowMenuButton.cs +++ b/PartPreviewWindow/OverflowMenuButton.cs @@ -30,7 +30,6 @@ either expressed or implied, of the FreeBSD Project. using System.IO; using MatterHackers.Agg.Platform; using MatterHackers.Agg.UI; -using MatterHackers.Localizations; namespace MatterHackers.MatterControl.PartPreviewWindow { @@ -38,16 +37,12 @@ namespace MatterHackers.MatterControl.PartPreviewWindow { public OverflowMenuButton(IconColor iconColor = IconColor.Theme) : base(new ImageWidget( - AggContext.StaticData.LoadIcon(Path.Combine("ViewTransformControls", "overflow.png"), - 32, - 32, - iconColor)) + AggContext.StaticData.LoadIcon(Path.Combine("ViewTransformControls", "overflow.png"), 32, 32, iconColor)) { HAnchor = HAnchor.Left - }, + }, ApplicationController.Instance.Theme) { - this.ToolTipText = "More...".Localize(); } public OverflowMenuButton(GuiWidget viewWidget, ThemeConfig theme)