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

[royale-asjs] branch develop updated: Make operator precedence explicit

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

yishayw 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 752ae7d  Make operator precedence explicit
752ae7d is described below

commit 752ae7d00a6cb57704ed36db77015b207191a3be
Author: DESKTOP-RH4S838\Yishay <yi...@hotmail.com>
AuthorDate: Sun Sep 8 16:51:32 2019 +0300

    Make operator precedence explicit
---
 .../controls/beads/controllers/CascadingMenuSelectionMouseController.as | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/beads/controllers/CascadingMenuSelectionMouseController.as b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/beads/controllers/CascadingMenuSelectionMouseController.as
index fd044c3..919f1cb 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/beads/controllers/CascadingMenuSelectionMouseController.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/beads/controllers/CascadingMenuSelectionMouseController.as
@@ -68,7 +68,7 @@ package mx.controls.beads.controllers
 		 */
 		override protected function getMenuWithDataProvider(menuList:Array, dp:Object):CascadingMenu
 		{
-			if (!dp is XMLListCollection)
+			if (!(dp is XMLListCollection))
 			{
 				return super.getMenuWithDataProvider(menuList, dp);
 			}