mirror of
https://github.com/n00mkrad/flowframes.git
synced 2026-07-12 05:26:12 +02:00
Fixed copy/paste error - Img Seq copy check would ignore max size check
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user