diff --git a/MatterControlLib/ApplicationView/SceneOperations.cs b/MatterControlLib/ApplicationView/SceneOperations.cs index 97383f80b..deb63554a 100644 --- a/MatterControlLib/ApplicationView/SceneOperations.cs +++ b/MatterControlLib/ApplicationView/SceneOperations.cs @@ -1427,7 +1427,7 @@ namespace MatterHackers.MatterControl scene.UndoBuffer.AddAndDo(new SetOutputType(selectedItem, allAreSupport ? PrintOutputTypes.Default : PrintOutputTypes.Support)); } }, - Icon = (theme) => StaticData.Instance.LoadIcon("support.png", 16, 16).SetToColor(theme.TextColor).SetPreMultiply(), + Icon = (theme) => StaticData.Instance.LoadIcon("edit_support.png", 16, 16).SetToColor(theme.TextColor).SetPreMultiply(), HelpTextResolver = () => "*At least 1 part must be selected*".Localize(), IsEnabled = (sceneContext) => IsMeshObject(sceneContext.Scene.SelectedItem), }; diff --git a/StaticData/Icons/edit_support.png b/StaticData/Icons/edit_support.png new file mode 100644 index 000000000..8301b93c8 Binary files /dev/null and b/StaticData/Icons/edit_support.png differ diff --git a/StaticData/Icons/group.png b/StaticData/Icons/group.png index d23a06a2e..f01f88661 100644 Binary files a/StaticData/Icons/group.png and b/StaticData/Icons/group.png differ diff --git a/StaticData/Icons/support.png b/StaticData/Icons/support.png index 91ea91998..b3ba86521 100644 Binary files a/StaticData/Icons/support.png and b/StaticData/Icons/support.png differ diff --git a/StaticData/Icons/ungroup.png b/StaticData/Icons/ungroup.png index 8abab9063..fad006a01 100644 Binary files a/StaticData/Icons/ungroup.png and b/StaticData/Icons/ungroup.png differ diff --git a/StaticData/Icons/wipe_tower.png b/StaticData/Icons/wipe_tower.png index b34846b9c..f48f5b6d8 100644 Binary files a/StaticData/Icons/wipe_tower.png and b/StaticData/Icons/wipe_tower.png differ diff --git a/Tests/MatterControl.AutomationTests/LocalLibraryTests.cs b/Tests/MatterControl.AutomationTests/LocalLibraryTests.cs index 5cdc9eda7..0e1b14cf6 100644 --- a/Tests/MatterControl.AutomationTests/LocalLibraryTests.cs +++ b/Tests/MatterControl.AutomationTests/LocalLibraryTests.cs @@ -134,7 +134,7 @@ namespace MatterHackers.MatterControl.Tests.Automation testRunner.AddAndSelectPrinter(); testRunner.AddItemToBed() - .ClickByName("Save Menu SplitButton", offset: new Agg.Point2D(10, 0)) + .ClickByName("Save Menu SplitButton", offset: new Agg.Point2D(30, 0)) .ClickByName("Save As Menu Item") .DoubleClickByName("Library Row Item Collection") .DoubleClickByName("Local Library Row Item Collection") diff --git a/Tests/MatterControl.Tests/MatterControl/MatterControlUtilities.cs b/Tests/MatterControl.Tests/MatterControl/MatterControlUtilities.cs index 11016b0b1..cb98ecde7 100644 --- a/Tests/MatterControl.Tests/MatterControl/MatterControlUtilities.cs +++ b/Tests/MatterControl.Tests/MatterControl/MatterControlUtilities.cs @@ -757,7 +757,7 @@ namespace MatterHackers.MatterControl.Tests.Automation public static AutomationRunner SaveBedplateToFolder(this AutomationRunner testRunner, string newFileName, string folderName) { - return testRunner.ClickByName("Save Menu SplitButton", offset: new Point2D(8, 0)) + return testRunner.ClickByName("Save Menu SplitButton", offset: new Point2D(30, 0)) .ClickByName("Save As Menu Item") .Delay(1) .Type(newFileName)