enable sequence player by default

This commit is contained in:
Fabien Servant 2024-10-21 16:40:11 +02:00 committed by Candice Bentéjac
parent eef1e6414e
commit 457b640002
2 changed files with 32 additions and 11 deletions

View file

@ -587,7 +587,7 @@ class MeshroomApp(QApplication):
return bool(os.environ.get("MESHROOM_USE_8BIT_VIEWER", False))
def _defaultSequencePlayerEnabled(self):
return bool(os.environ.get("MESHROOM_USE_SEQUENCE_PLAYER", False))
return bool(os.environ.get("MESHROOM_USE_SEQUENCE_PLAYER", True))
activeProjectChanged = Signal()
activeProject = Property(Variant, lambda self: self._activeProject, notify=activeProjectChanged)