mirror of
https://github.com/aseprite/aseprite.git
synced 2025-03-14 04:19:12 +00:00
Don't include untagged frames in the export when we use split tags option
This commit is contained in:
parent
f6dea3dfbf
commit
a60fea2e5f
@ -767,7 +767,9 @@ int DocExporter::addDocumentSamples(
|
||||
const Tag* tag = doc->sprite()->tags().innerTag(frame);
|
||||
if (oldTag != tag) {
|
||||
oldTag = tag;
|
||||
tags.push_back(tag);
|
||||
// Do not include untagged frames
|
||||
if (tag)
|
||||
tags.push_back(tag);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user