2001-04-27 Christian Stimming <stimming@tuhh.de>

* src/scm/report/balance-sheet.scm: Added workaround for gtkhtml
        column width.


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@4078 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Dave Peticolas 2001-04-27 19:04:52 +00:00
parent d29fe465cf
commit 421fc9542e
2 changed files with 14 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2001-04-27 Christian Stimming <stimming@tuhh.de>
* src/scm/report/balance-sheet.scm: Added workaround for gtkhtml
column width.
2001-04-27 Dave Peticolas <dave@krondo.com>
* src/SplitLedger.c (xaccSRExpandCurrentTrans): if expanding

View File

@ -277,9 +277,15 @@
(gnc:html-table-prepend-row/markup!
asset-table
"primary-subheading"
(list (gnc:html-acct-table-cell (* (if show-fcur? 3 2)
tree-depth)
(_ "Assets") #t)))
(append
(list (gnc:html-acct-table-cell tree-depth
(_ "Assets") #t))
;; Workaround to force gtkhtml into displaying wide
;; enough columns.
(make-list (* (if show-fcur? 2 1) tree-depth)
"&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;")))
(add-subtotal-line
asset-table (_ "Assets") asset-balance)