Fixed: #1668 Not removing SymbolClass/ExportAssets entry on character remove

This commit is contained in:
Jindra Petřík
2021-03-26 22:07:37 +01:00
parent 6c64dc19e1
commit ae9fe33f17
3 changed files with 12 additions and 2 deletions

View File

@@ -12,7 +12,8 @@
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library.
* License along with this library.
*/
package com.jpexs.decompiler.flash.tags;
import com.jpexs.decompiler.flash.SWF;
@@ -142,6 +143,9 @@ public class ExportAssetsTag extends SymbolClassTypeTag {
modified = true;
}
}
if (modified) {
setModified(true);
}
return modified;
}
}

View File

@@ -12,7 +12,8 @@
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library.
* License along with this library.
*/
package com.jpexs.decompiler.flash.tags;
import com.jpexs.decompiler.flash.SWF;
@@ -132,6 +133,9 @@ public class SymbolClassTag extends SymbolClassTypeTag {
modified = true;
}
}
if (modified) {
setModified(true);
}
return modified;
}
}