Updated Branches: refs/heads/develop b727dfa46 -> bdbf46e90
FLEX-34006 fixed RTE Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/9d2bc06a Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/9d2bc06a Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/9d2bc06a Branch: refs/heads/develop Commit: 9d2bc06ac610ed7cb35142b3dca794eac055e3bb Parents: b727dfa Author: Justin Mclean <[email protected]> Authored: Thu Dec 26 11:18:00 2013 +1100 Committer: Justin Mclean <[email protected]> Committed: Thu Dec 26 11:18:00 2013 +1100 ---------------------------------------------------------------------- .../mobilecomponents/src/spark/transitions/ViewTransitionBase.as | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/9d2bc06a/frameworks/projects/mobilecomponents/src/spark/transitions/ViewTransitionBase.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/mobilecomponents/src/spark/transitions/ViewTransitionBase.as b/frameworks/projects/mobilecomponents/src/spark/transitions/ViewTransitionBase.as index 57af224..903dfe0 100644 --- a/frameworks/projects/mobilecomponents/src/spark/transitions/ViewTransitionBase.as +++ b/frameworks/projects/mobilecomponents/src/spark/transitions/ViewTransitionBase.as @@ -105,7 +105,7 @@ use namespace mx_internal; * <li>A validation pass is performed on the pending * view, and the <code>captureEndValues()</code> method is called. * At this time, the transition captures any properties or - * bitmaps representations from the pending view.</li > + * bitmaps representations from the pending view.</li> * <li>The <code>prepareForPlay()</code> method is then called, * which allows the transition to perform any further preparations, * such as preparing a Spark effects sequence, @@ -749,7 +749,7 @@ public class ViewTransitionBase extends EventDispatcher { // One final check to determine if we will be required to perform a full // (consolidated) transition. - if (!consolidatedTransition) + if (!consolidatedTransition && actionBar) { consolidatedTransition = ((actionBar.height != cachedActionBarHeight) ||
