Skip to content

Commit

Permalink
Make ZIP frames animation format always available
Browse files Browse the repository at this point in the history
It used to be, but rejigging the switch statement changed that to be
incorrect.
  • Loading branch information
askmeaboutlo0m committed Nov 9, 2024
1 parent 8a0ac03 commit ca550d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libclient/export/animationformat.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ bool isAnimationFormatSupported(AnimationFormat format)
switch(format) {
#if !defined(Q_OS_ANDROID) && !defined(__EMSCRIPTEN__)
case AnimationFormat::Frames:
return true;
#endif
case AnimationFormat::Zip:
return true;
#ifdef DP_LIBAV
case AnimationFormat::Gif:
return DP_save_video_format_supported(DP_SAVE_VIDEO_FORMAT_PALETTE) &&
Expand Down

0 comments on commit ca550d8

Please sign in to comment.