Updated Branches:
  refs/heads/develop 51b286b29 -> bfb35b5e5

FLEX-32959 use calculated height


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

Branch: refs/heads/develop
Commit: bfb35b5e5c3abf77cfe17dccd045f45bedfe886c
Parents: 51b286b
Author: Justin Mclean <jmcl...@apache.org>
Authored: Sat Aug 3 09:26:43 2013 +1000
Committer: Justin Mclean <jmcl...@apache.org>
Committed: Sat Aug 3 09:26:43 2013 +1000

----------------------------------------------------------------------
 .../advancedgrids/src/mx/controls/AdvancedDataGridBaseEx.as       | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/bfb35b5e/frameworks/projects/advancedgrids/src/mx/controls/AdvancedDataGridBaseEx.as
----------------------------------------------------------------------
diff --git 
a/frameworks/projects/advancedgrids/src/mx/controls/AdvancedDataGridBaseEx.as 
b/frameworks/projects/advancedgrids/src/mx/controls/AdvancedDataGridBaseEx.as
index 203a113..9c3a3f4 100644
--- 
a/frameworks/projects/advancedgrids/src/mx/controls/AdvancedDataGridBaseEx.as
+++ 
b/frameworks/projects/advancedgrids/src/mx/controls/AdvancedDataGridBaseEx.as
@@ -4038,8 +4038,7 @@ public class AdvancedDataGridBaseEx extends 
AdvancedDataGridBase implements IIME
         var height:Number = Math.min(lastRow.y + lastRow.height,
                                      listContent.height - yy);
 
-        g.drawRect(xx, yy, headerInfo.headerItem.width,
-                   listContent.height - yy);
+        g.drawRect(xx, yy, headerInfo.headerItem.width, height);
         g.endFill();
     }
 

Reply via email to