From 060b0e3008f5baeed3c385083ed3ccff7561a24e Mon Sep 17 00:00:00 2001 From: Jakub Trllo Date: Thu, 2 May 2019 11:37:08 +0200 Subject: [PATCH] all video and image files can be set as thumbnail now --- pype/standalonepublish/widgets/widget_drop_frame.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pype/standalonepublish/widgets/widget_drop_frame.py b/pype/standalonepublish/widgets/widget_drop_frame.py index 89c4352717..5aa9d7ea61 100644 --- a/pype/standalonepublish/widgets/widget_drop_frame.py +++ b/pype/standalonepublish/widgets/widget_drop_frame.py @@ -277,8 +277,8 @@ class DropDataFrame(QtWidgets.QFrame): icon += 's' data['icon'] = icon data['thumb'] = ( - ext in self.presets['extensions']['thumbnailable'] and - data['is_sequence'] is False + ext in self.presets['extensions']['image_file'] or + ext in self.presets['extensions']['video_file'] ) data['prev'] = ext in self.presets['extensions']['video_file']