Fix rasterization error with vector graphics in buttons

This commit is contained in:
2017-11-24 08:12:03 +07:00
parent d4de173168
commit a74b616d21
8 changed files with 32 additions and 1 deletions

View File

@@ -1,6 +1,7 @@
###### Version 1.3.10
* Fix (conversion error: 'Error: scaleSelection: Argument number 1 is invalid.')
* Fix (Parsing swf error: Failed to read past end of stream)
* Fix rasterization error with vector graphics in buttons
###### Version 1.3.9
* Not save generated meshes in scene

View File

@@ -347,7 +347,7 @@
ftlib.is_symbol_item = function (item) {
ft.type_assert(item, LibraryItem);
return item.itemType == "graphic" || item.itemType == "movie clip";
return item.itemType == "button" || item.itemType == "graphic" || item.itemType == "movie clip";
};
ftlib.find_item_by_name = function (library, item_name) {