You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add an environment variable to set animation behaviour.
TEXTUAL_ANIMATION should be one of the following values:
NONE for no animation at all. BASIC for scrolling animation and other animation that doesn't delay content appearing (such as the tab underline). FULL for all animations.
Any other values should be equivalent to FULL
This should also be replicated in App with a property, so it could be set programatically.
The text was updated successfully, but these errors were encountered:
This looks like it'll take a couple of days because I need to figure out a way for the animations code to determine whether or not an animation is “basic”.
(If it were just NONE vs FULL, it'd be simpler.)
Looks like we don't want TEXTUAL_ANIMATIONS to interfere with the parameter delay that is set on some animations.
A delayed animation with TEXTUAL_ANIMATIONS set to NONE will be delayed for the correct amount of time and then it happens instantaneously.
Add an environment variable to set animation behaviour.
TEXTUAL_ANIMATION
should be one of the following values:NONE
for no animation at all.BASIC
for scrolling animation and other animation that doesn't delay content appearing (such as the tab underline).FULL
for all animations.Any other values should be equivalent to
FULL
This should also be replicated in
App
with a property, so it could be set programatically.The text was updated successfully, but these errors were encountered: