You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by pi...@apache.org on 2014/11/28 01:20:55 UTC

[15/25] git commit: [flex-tlf] [refs/heads/develop] - Fixed inserting columns so cells are inserted in the correct location

Fixed inserting columns so cells are inserted in the correct location


Project: http://git-wip-us.apache.org/repos/asf/flex-tlf/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-tlf/commit/99d8b6c7
Tree: http://git-wip-us.apache.org/repos/asf/flex-tlf/tree/99d8b6c7
Diff: http://git-wip-us.apache.org/repos/asf/flex-tlf/diff/99d8b6c7

Branch: refs/heads/develop
Commit: 99d8b6c7a5ff8caa94e78119d490448fb06acac9
Parents: f6348cd
Author: Harbs <ha...@in-tools.com>
Authored: Thu Nov 6 01:09:35 2014 +0200
Committer: Harbs <ha...@in-tools.com>
Committed: Thu Nov 6 01:09:35 2014 +0200

----------------------------------------------------------------------
 textLayout/src/flashx/textLayout/elements/TableElement.as | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-tlf/blob/99d8b6c7/textLayout/src/flashx/textLayout/elements/TableElement.as
----------------------------------------------------------------------
diff --git a/textLayout/src/flashx/textLayout/elements/TableElement.as b/textLayout/src/flashx/textLayout/elements/TableElement.as
index 2718c13..c7f2fbc 100644
--- a/textLayout/src/flashx/textLayout/elements/TableElement.as
+++ b/textLayout/src/flashx/textLayout/elements/TableElement.as
@@ -481,6 +481,7 @@ package flashx.textLayout.elements
 				if(rowIdx < numRows){
 					addChildAt(cellIdx,cell);
 				}
+				rowIdx++;
 			}