You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ca...@apache.org on 2020/08/09 13:30:46 UTC

[royale-asjs] branch develop updated: jewel-NullLayout: make layout report true

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

carlosrovira 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 7b4d963  jewel-NullLayout: make layout report true
7b4d963 is described below

commit 7b4d963d1cc48e7186d9924416772e21072c84b2
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Sun Aug 9 15:30:33 2020 +0200

    jewel-NullLayout: make layout report true
---
 .../royale/org/apache/royale/jewel/beads/layouts/NullLayout.as | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/layouts/NullLayout.as b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/layouts/NullLayout.as
index ca8b678..ba88a6b 100644
--- a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/layouts/NullLayout.as
+++ b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/layouts/NullLayout.as
@@ -46,6 +46,14 @@ package org.apache.royale.jewel.beads.layouts
         public function NullLayout()
         {
             super();
-        }        
+        }
+
+        /**
+         * @copy org.apache.royale.core.IBeadLayout#layout
+         */
+		override public function layout():Boolean
+		{
+            return true;
+        }   
 	}
 }