From b4c2ba7b3f8eed1d7ab2a922a27580e5b2e853cf Mon Sep 17 00:00:00 2001 From: Max Franz Date: Mon, 5 Nov 2018 13:17:48 -0500 Subject: [PATCH] Ensure that style hints are updated when bypasses are overridden. If the style hints are not updated, then an animation may be overridden by the element texture cache. For example, the "big, red nodes" animation test on the debug page fails without this patch. Ref : Use integer hash for style property hint keys #2027 --- src/style/bypass.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/style/bypass.js b/src/style/bypass.js index 1f70f9dcd6..50a9c8db15 100644 --- a/src/style/bypass.js +++ b/src/style/bypass.js @@ -124,6 +124,8 @@ styfn.overrideBypass = function( eles, name, value ){ } else { prop.strValue = '' + value; } + + this.updateStyleHints( ele ); } this.checkTriggers( ele, name, oldValue, value );