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/14 09:58:48 UTC

[royale-asjs] branch develop updated: tourdejewel: Fix duplicate container in Drawer. Remove unneeded BarRow: DrawerFooter is already a BarRow.

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 8deef48  tourdejewel: Fix duplicate container in Drawer. Remove unneeded BarRow: DrawerFooter is already a BarRow.
8deef48 is described below

commit 8deef488e8d7544b29a8af8cd30988a04f88727e
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Fri Aug 14 11:58:37 2020 +0200

    tourdejewel: Fix duplicate container in Drawer. Remove unneeded BarRow: DrawerFooter is already a BarRow.
---
 .../jewel/TourDeJewel/src/main/royale/MainContent.mxml   | 16 +++++++---------
 1 file changed, 7 insertions(+), 9 deletions(-)

diff --git a/examples/jewel/TourDeJewel/src/main/royale/MainContent.mxml b/examples/jewel/TourDeJewel/src/main/royale/MainContent.mxml
index 32c0beb..cbaa0ac 100644
--- a/examples/jewel/TourDeJewel/src/main/royale/MainContent.mxml
+++ b/examples/jewel/TourDeJewel/src/main/royale/MainContent.mxml
@@ -246,15 +246,13 @@ limitations under the License.
         </j:DrawerContent>
 
         <j:DrawerFooter>
-            <j:BarRow>
-                <j:BarSection>
-                    <j:IconButton>
-                        <j:icon>
-                            <js:MaterialIcon text="{MaterialIconType.FEEDBACK}" />
-                        </j:icon>
-                    </j:IconButton>
-                </j:BarSection>
-            </j:BarRow>
+            <j:BarSection>
+                <j:IconButton>
+                    <j:icon>
+                        <js:MaterialIcon text="{MaterialIconType.FEEDBACK}" />
+                    </j:icon>
+                </j:IconButton>
+            </j:BarSection>
         </j:DrawerFooter>
 
     </j:Drawer>