You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ah...@apache.org on 2020/03/03 22:11:04 UTC

[royale-asjs] branch develop updated: fix DateField owns. Should fix #746

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 <ah...@apache.org>
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);
 	}
 }