From be095393dc860bd4b559e799c706acd6c90030cf Mon Sep 17 00:00:00 2001 From: Christian Stimming Date: Sun, 15 May 2011 19:28:16 +0000 Subject: [PATCH] Bug #650241: Fix style for aging table in owner reports that has changed (after defining doctype) Patch by Bert: Prevent inheriting the parent tablestyle for aging table in owner-report Bug #650139 & its patch in r20639 have some side-effects: positive is that borders are shown for empty cell (#642222). However, the aging table in the owner report now inherits the style from its parent table, which means that all cells of the aging table are showing as "centered-label-cell". This means: *In the regular stylesheet: all text in the cells is bold *In technicolor stylesheet: all cells have a yellow background This patch removes the "centered-label-cell" class from the parent table cell and shows the layout of the aging table to how it was before. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@20648 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/report/business-reports/owner-report.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/report/business-reports/owner-report.scm b/src/report/business-reports/owner-report.scm index de0363a593a..a8dc79315cb 100644 --- a/src/report/business-reports/owner-report.scm +++ b/src/report/business-reports/owner-report.scm @@ -445,9 +445,8 @@ (gnc:html-table-append-row/markup! table "grand-total" - (list (gnc:make-html-table-cell/size/markup + (list (gnc:make-html-table-cell/size 1 columns-used-size - "centered-label-cell" (make-aging-table options query interval-vec reverse? date-type))))) table))