Qt with python (pyside) rotation check fails -
i have problem rotation check qgraphicsitemgroup. several items grouped group rotating in scene. after rotation, qgraphicsitem.rotation() returns 0. group flagged sethandleschildevents(false) - if matters.
furthermore, child items rotated group, , same method returns 0 them (...maybe ok ).
am doing wrong in checking group rotation ?
edit:
item_group.rotate(90) print item_group.rotation() #prints 0
or
for in item_group: i.rotate(90) print i.rotation() #also prints 0 each
Comments
Post a Comment