From 576c2726e53448db2897a3b34f42e96140dd1d46 Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Wed, 28 Oct 2020 19:14:43 +0100 Subject: [PATCH] settings has Animated variable based on `PYPE_PYBLISH_ANIMATED` env variable --- pype/tools/pyblish_pype/settings.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pype/tools/pyblish_pype/settings.py b/pype/tools/pyblish_pype/settings.py index a3ae83ff0a..dd7c820f56 100644 --- a/pype/tools/pyblish_pype/settings.py +++ b/pype/tools/pyblish_pype/settings.py @@ -1,3 +1,6 @@ +from .util import env_variable_to_bool + + WindowTitle = "Pyblish" # Customize the window of the pyblish-lite window. UseLabel = True # Customize whether to show label names for plugins. @@ -17,3 +20,5 @@ TerminalFilters = { "log_critical": True, "traceback": True, } + +Animated = env_variable_to_bool("PYPE_PYBLISH_ANIMATED", True)