Merge pull request #120 from daleglass-overte/fix-animated-screenshots

Fix bug in naming animated screenshots since the change to PNG
This commit is contained in:
ksuprynowicz 2022-07-14 20:44:27 +02:00 committed by GitHub
commit 44702b3e26
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);
}