Make sure we don't double scale the library icons.

This commit is contained in:
Lars Brubaker 2016-05-10 11:26:02 -07:00
parent ec4f5c180d
commit 10e173c6c0
2 changed files with 3 additions and 3 deletions

View file

@ -76,7 +76,7 @@ namespace MatterHackers.MatterControl.PrintLibrary.Provider
{
string path = Path.Combine("FileDialog", "folder.png");
normalFolderImage = InvertLightness.DoInvertLightness(StaticData.Instance.LoadIcon(path, 65,65));
normalFolderImage = InvertLightness.DoInvertLightness(StaticData.Instance.LoadIcon(path));
}
return normalFolderImage;
@ -91,7 +91,7 @@ namespace MatterHackers.MatterControl.PrintLibrary.Provider
{
string path = Path.Combine("FileDialog", "up_folder.png");
upFolderImage = InvertLightness.DoInvertLightness(StaticData.Instance.LoadIcon(path, 65,65));
upFolderImage = InvertLightness.DoInvertLightness(StaticData.Instance.LoadIcon(path));
}
return upFolderImage;