You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by pi...@apache.org on 2019/01/26 14:21:23 UTC

[royale-asjs] branch develop updated: Jewel Group: Add Inspectable items align properties

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

piotrz 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 9401d24  Jewel Group: Add Inspectable items align properties
9401d24 is described below

commit 9401d24dec5cc205a9387189cca8597a5ba46794
Author: Piotr Zarzycki <pi...@gmail.com>
AuthorDate: Sat Jan 26 15:21:11 2019 +0100

    Jewel Group: Add Inspectable items align properties
---
 .../projects/Jewel/src/main/royale/org/apache/royale/jewel/Group.as     | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/Group.as b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/Group.as
index 219e323..89a8bda 100644
--- a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/Group.as
+++ b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/Group.as
@@ -164,6 +164,7 @@ package org.apache.royale.jewel
             return _layout.itemsHorizontalAlign;
         }
 
+        [Inspectable(category="General", enumeration="itemsLeft,itemsCenter,itemsRight,itemsSpaceBetween,itemsSpaceAround")]
         public function set itemsHorizontalAlign(value:String):void
         {
 			typeNames = StringUtil.removeWord(typeNames, " " + _layout.itemsHorizontalAlign);
@@ -195,6 +196,7 @@ package org.apache.royale.jewel
             return _layout.itemsVerticalAlign;
         }
 
+        [Inspectable(category="General", enumeration="itemsSameHeight,itemsCentered,itemsTop,itemsBottom")]
         public function set itemsVerticalAlign(value:String):void
         {
 			typeNames = StringUtil.removeWord(typeNames, " " + _layout.itemsVerticalAlign);