Fixed copy/paste error - Img Seq copy check would ignore max size check

This commit is contained in:
N00MKRAD
2021-05-07 21:09:52 +02:00
parent a91097a6ad
commit acf8414a9a

View File

@@ -153,7 +153,7 @@ namespace Flowframes.Media
bool allSmallEnough = randomSamples.All(i => (i.Width <= maxSize.Width) && (i.Height <= maxSize.Height));
if (!allDivBy2)
if (!allSmallEnough)
{
Logger.Log($"[AreImagesCompatible] Sequence not compatible: Image dimensions above max size.", true);
return false;