Re-added paragraph return
Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/495cc0cd Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/495cc0cd Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/495cc0cd Branch: refs/heads/tlf Commit: 495cc0cd7f54ca6032a98ab393c6cd829ef4056a Parents: 3ec05bc Author: Harbs <[email protected]> Authored: Wed May 3 11:28:33 2017 +0300 Committer: Harbs <[email protected]> Committed: Wed May 3 11:28:33 2017 +0300 ---------------------------------------------------------------------- .../main/flex/org/apache/flex/textLayout/elements/SpanElement.as | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/495cc0cd/frameworks/projects/TLF/src/main/flex/org/apache/flex/textLayout/elements/SpanElement.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/TLF/src/main/flex/org/apache/flex/textLayout/elements/SpanElement.as b/frameworks/projects/TLF/src/main/flex/org/apache/flex/textLayout/elements/SpanElement.as index 4a4a9ea..114c496 100644 --- a/frameworks/projects/TLF/src/main/flex/org/apache/flex/textLayout/elements/SpanElement.as +++ b/frameworks/projects/TLF/src/main/flex/org/apache/flex/textLayout/elements/SpanElement.as @@ -77,7 +77,7 @@ package org.apache.flex.textLayout.elements return; calculateComputedFormat(); // BEFORE creating the element - _blockElement = new TextElement(text,null); + _blockElement = new TextElement(_text,null); CONFIG::debug { Debugging.traceFTECall(_blockElement,null,"new TextElement()"); } CONFIG::debug { Debugging.traceFTEAssign(_blockElement, "text", _text); } super.createContentElement();
