You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ha...@apache.org on 2019/03/27 11:31:54 UTC

[royale-asjs] branch develop updated: When overflow is hidden, drawing does not work on scrolled lists

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

harbs 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 d71dd3a  When overflow is hidden, drawing does not work on scrolled lists
d71dd3a is described below

commit d71dd3a56f9923ca73f62ebf414ca7adc2fd6fdf
Author: Harbs <ha...@in-tools.com>
AuthorDate: Wed Mar 27 13:31:42 2019 +0200

    When overflow is hidden, drawing does not work on scrolled lists
---
 .../main/royale/org/apache/royale/html/beads/ListDrawingLayerBead.as    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/frameworks/projects/DragDrop/src/main/royale/org/apache/royale/html/beads/ListDrawingLayerBead.as b/frameworks/projects/DragDrop/src/main/royale/org/apache/royale/html/beads/ListDrawingLayerBead.as
index 33ace0d..fe6f153 100644
--- a/frameworks/projects/DragDrop/src/main/royale/org/apache/royale/html/beads/ListDrawingLayerBead.as
+++ b/frameworks/projects/DragDrop/src/main/royale/org/apache/royale/html/beads/ListDrawingLayerBead.as
@@ -65,7 +65,7 @@ package org.apache.royale.html.beads
 			COMPILE::JS {
 				_layer.element.style.position = 'absolute';
 				_layer.element.style['pointer-events'] = 'none';
-				_layer.element.style['overflow'] = 'hidden';
+				_layer.element.style['overflow'] = 'visible';
 			}
 		}