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/10/05 12:06:52 UTC

[royale-asjs] branch develop updated: jewel-combobox: comment some traces

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 7513234  jewel-combobox: comment some traces
7513234 is described below

commit 7513234102741ff3421886a775521754a5261c2a
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Mon Oct 5 14:06:42 2020 +0200

    jewel-combobox: comment some traces
---
 .../org/apache/royale/jewel/beads/views/ComboBoxPopUpView.as      | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/views/ComboBoxPopUpView.as b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/views/ComboBoxPopUpView.as
index eec592c..65e2df9 100644
--- a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/views/ComboBoxPopUpView.as
+++ b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/views/ComboBoxPopUpView.as
@@ -90,13 +90,13 @@ package org.apache.royale.jewel.beads.views
                     rowCount = len;
             }
             
-            trace("_presentationModel.rowHeight: ", _presentationModel.rowHeight);
+            // trace("_presentationModel.rowHeight: ", _presentationModel.rowHeight);
             if(isNaN( _presentationModel.rowHeight))
                 _presentationModel.rowHeight = ListPresentationModel.DEFAULT_ROW_HEIGHT;
-            trace("rowCount: ", rowCount);
-            trace("list.height: ", list.height);
+            // trace("rowCount: ", rowCount);
+            // trace("list.height: ", list.height);
             list.height = rowCount * _presentationModel.rowHeight;
-            trace(" list.height: ", list.height);
+            // trace(" list.height: ", list.height);
 
             IParent(_strand).addElement(list);
 		}