Fix bug: removing frames weren't saving updated cel frame positions in the backup info

This commit is contained in:
David Capello 2018-07-04 13:38:54 -03:00
parent 68bf959b80
commit 1c8f2cde7d

View File

@ -326,6 +326,7 @@ void LayerImage::moveCel(Cel* cel, frame_t frame)
{
removeCel(cel);
cel->setFrame(frame);
cel->incrementVersion(); // TODO this should be in app::cmd module
addCel(cel);
}