This is an automated email from the ASF dual-hosted git repository. aharui pushed a commit to branch feature/MXRoyale in repository https://gitbox.apache.org/repos/asf/royale-asjs.git
commit ade0559b37ffb2720c8822b7d3155c0f47fe2ff3 Author: Alex Harui <[email protected]> AuthorDate: Thu Apr 19 18:43:22 2018 -0700 fix up after popuphost change --- .../royale/org/apache/royale/jewel/beads/views/DropDownListView.as | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/views/DropDownListView.as b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/views/DropDownListView.as index d576a68..2582856 100644 --- a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/views/DropDownListView.as +++ b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/views/DropDownListView.as @@ -291,12 +291,12 @@ package org.apache.royale.jewel.beads.views if (value) { host = UIUtils.findPopUpHost(_strand as IUIBase); - IPopUpHost(host).addElement(popUp as IChild); + IPopUpHost(host).popUpParent.addElement(popUp as IChild); } else { host = UIUtils.findPopUpHost(_strand as IUIBase); - IPopUpHost(host).removeElement(popUp as IChild); + IPopUpHost(host).popUpParent.removeElement(popUp as IChild); } } } -- To stop receiving notification emails like this one, please contact [email protected].
