浏览代码

Show icon for motion photo

Neeraj Gupta 2 年之前
父节点
当前提交
1af15c6ff1
共有 1 个文件被更改,包括 3 次插入2 次删除
  1. 3 2
      lib/ui/viewer/file/thumbnail_widget.dart

+ 3 - 2
lib/ui/viewer/file/thumbnail_widget.dart

@@ -111,8 +111,9 @@ class _ThumbnailWidgetState extends State<ThumbnailWidget> {
       }
       if (widget.file!.fileType == FileType.video) {
         contentChildren.add(const VideoOverlayIcon());
-      } else if (widget.file!.fileType == FileType.livePhoto &&
-          widget.shouldShowLivePhotoOverlay) {
+      } else if (widget.shouldShowLivePhotoOverlay &&
+          (widget.file!.fileType == FileType.livePhoto ||
+              ((widget.file!.pubMagicMetadata?.mvi ?? 0) > 0))) {
         contentChildren.add(const LivePhotoOverlayIcon());
       }
       if (widget.shouldShowOwnerAvatar) {