Skip to content

Commit

Permalink
bugfix: Preview in GUI when converting to vid/gif
Browse files Browse the repository at this point in the history
  • Loading branch information
torzdf committed Oct 24, 2023
1 parent 8e6c6c3 commit 4557331
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/convert/writer/_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def is_stream(self) -> bool:
Writers that write to a stream have a frame_order paramater to dictate
the order in which frames should be written out (eg. gif/ffmpeg) """
retval = hasattr(self, "frame_order")
retval = hasattr(self, "_frame_order")
return retval

@classmethod
Expand Down

0 comments on commit 4557331

Please sign in to comment.