Skip to content

Commit

Permalink
Fix for Animate 2019
Browse files Browse the repository at this point in the history
  • Loading branch information
TomByrne committed Jan 30, 2019
1 parent 7d0b9b9 commit e3755ca
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion build/html-manifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
ExtensionBundleName="SvgAnimationForFlash" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Author>
<![CDATA[tbyrne.org]]>
</Author> <ExtensionList>
</Author>
<ExtensionList>
<Extension Id="org.tbyrne.SvgAnimationForFlash.ExportPanel" Version="1.0" />
</ExtensionList>
<ExecutionEnvironment>
Expand Down
2 changes: 1 addition & 1 deletion build/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.56.0
3.58.0
6 changes: 3 additions & 3 deletions html/ExtensionContent/Extensible/SVG.jsfl
Original file line number Diff line number Diff line change
Expand Up @@ -4301,9 +4301,9 @@
var contours = item.contours;
var isText = item.elementType == "text";

var svg=new XML('<g test="' + settings.parentTimeline.name + '"/>');
var matrixStr = this._getMatrix(matrix);
if(matrixStr!=this.IDENTITY_MATRIX) svg['@transform']=matrixStr;
var svg=new XML('<g/>');
//var matrixStr = this._getMatrix(matrix);
//if(matrixStr!=this.IDENTITY_MATRIX) svg['@transform']=matrixStr;

if(isText || (contours && contours.length && !item.isGroup)){
settings.parentTimeline.setSelectedLayers(settings.parentLayer);
Expand Down

0 comments on commit e3755ca

Please sign in to comment.