1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Disabled flip animations in preview.

This commit is contained in:
Joe R 2023-05-30 21:01:31 -04:00
parent 2988f1b2f8
commit d2e83ae8fd

View file

@ -1670,12 +1670,12 @@ class Game(object):
return True
def animatedFlip(self, stack):
if not self.app.opt.flip_animation:
if self.preview or not self.app.opt.flip_animation:
return False
return self.doAnimatedFlipAndMove(stack)
def animatedFlipAndMove(self, from_stack, to_stack, frames=-1):
if not self.app.opt.flip_animation:
if self.preview or not self.app.opt.flip_animation:
return False
return self.doAnimatedFlipAndMove(from_stack, to_stack, frames)