Set the summary bar values when the window is first opened (#345978).

BP



git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@14516 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Derek Atkins 2006-07-16 05:58:07 +00:00
parent 76202b1b33
commit bdd43b708f
2 changed files with 6 additions and 0 deletions

View File

@ -4,6 +4,9 @@
Make GncAddress more QOF compliant. (#343726) Make GncAddress more QOF compliant. (#343726)
Adds BeginEdit/CommitEdit calls. Adds BeginEdit/CommitEdit calls.
* src/business/business-gnome/dialog-invoice.c:
Set the summary bar values when the window is first opened (#345978).
2006-07-15 Andreas Köhler <andi5.py@gmx.net> 2006-07-15 Andreas Köhler <andi5.py@gmx.net>
* src/report/report-system/html-text.scm: Remove a duplicate of * src/report/report-system/html-text.scm: Remove a duplicate of

View File

@ -1678,6 +1678,9 @@ gnc_invoice_new_page (GNCBook *bookp, InvoiceDialogType type,
new_page = gnc_plugin_page_invoice_new (iw); new_page = gnc_plugin_page_invoice_new (iw);
gnc_main_window_open_page (gnc_plugin_business_get_window(), new_page); gnc_main_window_open_page (gnc_plugin_business_get_window(), new_page);
/* Initialize the summary bar */
gnc_invoice_redraw_all_cb(iw->reg, iw);
return iw; return iw;
} }