This is an automated email from the ASF dual-hosted git repository.

aharui 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 d28b5dd  fix DateField owns.  Should fix #746
d28b5dd is described below

commit d28b5ddfb8cbc740747b56e610bba5c0f8ab87d0
Author: Alex Harui <[email protected]>
AuthorDate: Tue Mar 3 14:10:39 2020 -0800

    fix DateField owns.  Should fix #746
---
 frameworks/projects/MXRoyale/src/main/royale/mx/controls/DateField.as | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/DateField.as 
b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/DateField.as
index b58a619..8c84fdd 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/DateField.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/DateField.as
@@ -2950,7 +2950,7 @@ public class DateField extends ComboBase implements 
IDataRenderer,IFocusManagerC
        override public function owns(child:IUIBase):Boolean
        {
                if (child == (view as DateFieldView).popUp) return true;
-               return false;
+               return super.owns(child);
        }
 }
 

Reply via email to