Revision: 7728
Author: victormote
Date: 2006-06-19 17:28:29 -0700 (Mon, 19 Jun 2006)
ViewCVS: http://svn.sourceforge.net/foray/?rev=7728&view=rev
Log Message:
-----------
Clean up background processing a bit.
Modified Paths:
--------------
trunk/foray/foray-render/src/java/org/foray/render/Renderer.java
Modified: trunk/foray/foray-render/src/java/org/foray/render/Renderer.java
===================================================================
--- trunk/foray/foray-render/src/java/org/foray/render/Renderer.java 2006-06-20 00:20:52 UTC (rev 7727)
+++ trunk/foray/foray-render/src/java/org/foray/render/Renderer.java 2006-06-20 00:28:29 UTC (rev 7728)
@@ -427,6 +427,8 @@
* @param area The TableRA instance to render.
*/
public void render(TableArea area) {
+ /* Render background Areas for the table-related background-only
+ * areas. */
BackgroundArea[] backgroundAreas = area.getBackgroundAreas();
if (backgroundAreas != null) {
for (int i = 0; i < backgroundAreas.length; i++) {
@@ -438,7 +440,6 @@
* as possible. Contiguous cells that have identical borders should have
* their borders painted at the same time. */
markBorder(area);
- markBackground(area);
renderChildren(area);
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|