fixing button

This commit is contained in:
MatterHackers 2023-03-11 11:31:02 -08:00
parent 6492f25d1d
commit 25123d29a6

View file

@ -1101,9 +1101,9 @@ namespace MatterHackers.MatterControl.DesignTools
if (directoryPathAttribute != null)
{
// add a browse button
var browseButton = new ThemedIconButton(StaticData.Instance.LoadIcon("icon_search_24x24.png", 16, 16).SetToColor(theme.TextColor), theme)
var browseButton = new ThemedIconButton(StaticData.Instance.LoadIcon(Path.Combine("Library", "folder.png"), 16, 16).SetToColor(theme.TextColor), theme)
{
ToolTipText = "Search".Localize(),
ToolTipText = "Select Folder".Localize(),
};
browseButton.Click += (s, e) =>
{