Skip to content

Commit

Permalink
Fixed Transforming handler shape mismatch for Tracker effect
Browse files Browse the repository at this point in the history
  • Loading branch information
BrennoCaldato committed Mar 16, 2021
1 parent e728227 commit 1f3393a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/windows/video_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ def paintEvent(self, event, *args):
scale = self.transforming_clip.data['scale']

# Set scale as STRETCH if the clip is attached to an object
if raw_properties.get('parentObjectId', {}).get('memo'):
if (raw_properties.get('parentObjectId').get('memo') != 'None' and len(raw_properties.get('parentObjectId').get('memo')) > 0 ):
scale = openshot.SCALE_STRETCH

if scale == openshot.SCALE_FIT:
Expand Down

0 comments on commit 1f3393a

Please sign in to comment.