diff --git a/ChangeLog b/ChangeLog index af6009ff69..2560b4fdef 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,6 +4,9 @@ Make GncAddress more QOF compliant. (#343726) 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 * src/report/report-system/html-text.scm: Remove a duplicate of diff --git a/src/business/business-gnome/dialog-invoice.c b/src/business/business-gnome/dialog-invoice.c index e6ee4c2fa5..8bcdf7a9f4 100644 --- a/src/business/business-gnome/dialog-invoice.c +++ b/src/business/business-gnome/dialog-invoice.c @@ -1678,6 +1678,9 @@ gnc_invoice_new_page (GNCBook *bookp, InvoiceDialogType type, new_page = gnc_plugin_page_invoice_new (iw); 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; }