This is an automated email from the ASF dual-hosted git repository.
harbs pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git
The following commit(s) were added to refs/heads/develop by this push:
new 86c7225 Order of header and footer reversed
new 5b2e53f Merge pull request #521 from nihavend/develop
86c7225 is described below
commit 86c7225f367905eda8eb436306ed0a385cc3f975
Author: Serkan Taş <[email protected]>
AuthorDate: Sun Oct 20 10:10:33 2019 +0300
Order of header and footer reversed
Due to synchronization problem between the files StatesWithTransitionsImpl
and SimpleStatesImpl, header is placed under footer. Fixed making relevant
changes
---
.../main/royale/org/apache/royale/core/StatesWithTransitionsImpl.as | 4 ++++
1 file changed, 4 insertions(+)
diff --git
a/frameworks/projects/Effects/src/main/royale/org/apache/royale/core/StatesWithTransitionsImpl.as
b/frameworks/projects/Effects/src/main/royale/org/apache/royale/core/StatesWithTransitionsImpl.as
index f00448a..0269a0e 100644
---
a/frameworks/projects/Effects/src/main/royale/org/apache/royale/core/StatesWithTransitionsImpl.as
+++
b/frameworks/projects/Effects/src/main/royale/org/apache/royale/core/StatesWithTransitionsImpl.as
@@ -330,6 +330,10 @@ package org.apache.royale.core
childrenAdded = true;
}
}
+ else if (ai.position ==
"first")
+ {
+
parent.addElementAt(item, 0);
+ }
else
{
parent.addElement(item);