From eb3bb82e0c43404fde3e1128536afbf558b2cbb0 Mon Sep 17 00:00:00 2001 From: Dale Glass Date: Wed, 13 Jul 2022 23:56:20 +0200 Subject: [PATCH] Fix bug in naming animated screenshots since the change to PNG --- interface/src/ui/SnapshotAnimated.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/interface/src/ui/SnapshotAnimated.cpp b/interface/src/ui/SnapshotAnimated.cpp index b8cffca8ab..6d4c36afa1 100644 --- a/interface/src/ui/SnapshotAnimated.cpp +++ b/interface/src/ui/SnapshotAnimated.cpp @@ -45,6 +45,7 @@ void SnapshotAnimated::saveSnapshotAnimated(QString pathStill, float aspectRatio SnapshotAnimated::snapshotStillPath = pathStill; SnapshotAnimated::snapshotAnimatedPath = pathStill; SnapshotAnimated::snapshotAnimatedPath.replace("jpg", "gif"); + SnapshotAnimated::snapshotAnimatedPath.replace("png", "gif"); // Ensure the snapshot timer is Precise (attempted millisecond precision) SnapshotAnimated::snapshotAnimatedTimer->setTimerType(Qt::PreciseTimer); @@ -148,7 +149,7 @@ void SnapshotAnimated::processFrames() { GifEnd(&(SnapshotAnimated::snapshotAnimatedGifWriter)); SnapshotAnimated::clearTempVariables(); - + // Update the "Share" dialog with the processed GIF. emit SnapshotAnimated::snapshotAnimatedDM->processingGifCompleted(SnapshotAnimated::snapshotAnimatedPath); }