Skip to content

Commit 1f3393a

Browse files
committed
Fixed Transforming handler shape mismatch for Tracker effect
1 parent e728227 commit 1f3393a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/windows/video_widget.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ def paintEvent(self, event, *args):
242242
scale = self.transforming_clip.data['scale']
243243

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

248248
if scale == openshot.SCALE_FIT:

0 commit comments

Comments
 (0)