State:Closed|icon_bug|icon_nuke|database:public|Resolution:Fixed|TargetRelease:13.2v7|BugID:513044|
Problem summary
Creating tags via Python in Hiero 13.1v2, and later, is significantly slower than previous releases.
Customer reported version
Hiero 13.2v2
Customer reported platform
Windows 10
Steps to reproduce
1) To make this issue more noticeable, you will need a large project. An example .hrox project is attached.
2) Open Hiero 13.1v2, or later.
3) Open the attached project, and double click Sequence 2 to open it in the Timeline.
4) Run the following code in the Script Editor
def create_tags_example(): sequence = hiero.core.projects()[0].sequences()[0] for track in sequence: if track.items(): track_item = track.items()[0] for i in range(288): tag = hiero.core.Tag("Take Name") track_item.addTag(tag) create_tags_example() We're sorry to hear that
Please tell us why