You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ha...@apache.org on 2017/05/03 08:28:38 UTC

[2/2] git commit: [flex-asjs] [refs/heads/tlf] - Re-added paragraph return

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 <ha...@in-tools.com>
Authored: Wed May 3 11:28:33 2017 +0300
Committer: Harbs <ha...@in-tools.com>
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();