gnucash stable: Multiple changes pushed

Christopher Lam clam at code.gnucash.org
Tue Apr 25 17:54:26 EDT 2023


Updated	 via  https://github.com/Gnucash/gnucash/commit/b7e966d8 (commit)
	 via  https://github.com/Gnucash/gnucash/commit/f6c759b7 (commit)
	from  https://github.com/Gnucash/gnucash/commit/7e07c504 (commit)



commit b7e966d828b23300c2e5d3e9ab898689d52e6b2a
Merge: 7e07c50485 f6c759b7f0
Author: Christopher Lam <christopher.lck at gmail.com>
Date:   Wed Apr 26 05:53:07 2023 +0800

    Merge Vincent Dawans' branch 'bug798886' into stable #1614


commit f6c759b7f06a940f0247e9cd57e42aaacce9e412
Author: Vincent Dawans <dawansv at gmail.com>
Date:   Mon Apr 24 21:46:48 2023 -0700

    Bug 798886 - [Transaction Report] Subtotal upper headings do not follow
    font style of lower headings
    
    Added "total-label-cell" market to upper headings to match lower headings

diff --git a/gnucash/report/trep-engine.scm b/gnucash/report/trep-engine.scm
index 445bee2e46..025efef0ee 100644
--- a/gnucash/report/trep-engine.scm
+++ b/gnucash/report/trep-engine.scm
@@ -1445,12 +1445,12 @@ be excluded from periodic reporting.")
             (gnc:html-make-empty-cells left-indent)
             (if export?
                 (cons
-                 (gnc:make-html-table-cell data)
+                 (gnc:make-html-table-cell/markup "total-label-cell" data)
                  (gnc:html-make-empty-cells
                   (+ right-indent width-left-columns -1)))
                 (list
-                 (gnc:make-html-table-cell/size
-                  1 (+ right-indent width-left-columns) data)))
+                 (gnc:make-html-table-cell/size/markup
+                  1 (+ right-indent width-left-columns) "total-label-cell" data)))
             (map
              (lambda (cell)
                (match (vector-ref cell 5)



Summary of changes:
 gnucash/report/trep-engine.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)



More information about the gnucash-changes mailing list