Fix TrySetResolution

This commit is contained in:
abeloin 2014-01-18 09:27:20 -05:00
parent 0f7f467478
commit a05de5ad0c

View File

@ -198,7 +198,7 @@ namespace MediaBrowser.Controller.Drawing
{
if (x > 0 && y > 0)
{
bmp.SetResolution(bmp.HorizontalResolution, bmp.VerticalResolution);
bmp.SetResolution(x, y);
}
}