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 8060500633 Revert "Improvements to overflow bead."
8060500633 is described below

commit 8060500633f4b342c27cac736b8db878c920cef2
Author: yweiss <[email protected]>
AuthorDate: Wed Jun 22 23:15:42 2022 -0700

    Revert "Improvements to overflow bead."
    
    This reverts commit 44a2e75731a037050cf043b4f1f7ec6b8fb9506c.
---
 .../royale/org/apache/royale/html/beads/ReversibleEllipsisOverflow.as | 4 ----
 1 file changed, 4 deletions(-)

diff --git 
a/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/beads/ReversibleEllipsisOverflow.as
 
b/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/beads/ReversibleEllipsisOverflow.as
index 7f06fae98d..c48c2097dd 100644
--- 
a/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/beads/ReversibleEllipsisOverflow.as
+++ 
b/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/beads/ReversibleEllipsisOverflow.as
@@ -51,7 +51,6 @@ package org.apache.royale.html.beads
                private var _oldOverflow:String;
                private var _oldTextOverflow:String;
                private var _oldDisplay:String;
-               private var _oldWhiteSpace:String;
 
                /**
                 *  @copy org.apache.royale.core.IBead#strand
@@ -86,11 +85,9 @@ package org.apache.royale.html.beads
                                _oldOverflow = style.overflow;
                                _oldTextOverflow = style.textOverflow;
                                _oldDisplay = style.display;
-                               _oldWhiteSpace = style.whiteSpace;
                                style.overflow = "hidden";
                                style.textOverflow = "ellipsis";
                                style.display = "block";
-                               style.whiteSpace = "nowrap";
                        }
 
                }
@@ -112,7 +109,6 @@ package org.apache.royale.html.beads
                                style.overflow = _oldOverflow;
                                style.textOverflow = _oldTextOverflow;
                                style.display = _oldDisplay;
-                               style.whiteSpace = _oldWhiteSpace;
                        }
                }
 

Reply via email to