diff --git a/PartPreviewWindow/PlusTab/ExplorerBar.cs b/PartPreviewWindow/PlusTab/ExplorerBar.cs index d19cba579..307bc9a0d 100644 --- a/PartPreviewWindow/PlusTab/ExplorerBar.cs +++ b/PartPreviewWindow/PlusTab/ExplorerBar.cs @@ -104,7 +104,7 @@ namespace MatterHackers.MatterControl.PartPreviewWindow.PlusTab var forcedHeight = printerSelector.Height; // add in the create printer button - var createPrinter = new IconButton(AggContext.StaticData.LoadIcon("icon_circle_plus.png", 16, 16, theme.InvertIcons), theme) + var createPrinter = new IconButton(AggContext.StaticData.LoadIcon("md-add-circle_18.png", 18, 18, theme.InvertIcons), theme) { Name = "Create Printer", VAnchor = VAnchor.Center, @@ -134,7 +134,7 @@ namespace MatterHackers.MatterControl.PartPreviewWindow.PlusTab headingBar.AddChild(createPrinter); // add in the import printer button - var importPrinter = new IconButton(AggContext.StaticData.LoadIcon("icon_import_white_full.png", 16, 16, theme.InvertIcons), theme) + var importPrinter = new IconButton(AggContext.StaticData.LoadIcon("md-import_18.png", 18, 18, theme.InvertIcons), theme) { VAnchor = VAnchor.Center, Margin = theme.ButtonSpacing, diff --git a/StaticData/Icons/md-add-circle_18.png b/StaticData/Icons/md-add-circle_18.png new file mode 100644 index 000000000..895aaab18 Binary files /dev/null and b/StaticData/Icons/md-add-circle_18.png differ diff --git a/StaticData/Icons/md-import_18.png b/StaticData/Icons/md-import_18.png new file mode 100644 index 000000000..b1db15174 Binary files /dev/null and b/StaticData/Icons/md-import_18.png differ