2003-03-23 Christian Stimming <stimming@tuhh.de>

* src/import-export/hbci/hbci-interaction.c (GNCInteractor_hide):
	Fix close-on-finished checkbutton.


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@8097 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Christian Stimming 2003-03-23 12:30:42 +00:00
parent 02687747de
commit 3cbd89037a
2 changed files with 9 additions and 1 deletions

View File

@ -1,5 +1,8 @@
2003-03-23 Christian Stimming <stimming@tuhh.de>
* src/import-export/hbci/hbci-interaction.c (GNCInteractor_hide):
Fix close-on-finished checkbutton.
* src/import-export/hbci/hbci-progressmon.c: Add descriptions of
new HBCI actions.

View File

@ -93,7 +93,12 @@ void GNCInteractor_show(GNCInteractor *i)
void GNCInteractor_hide(GNCInteractor *i)
{
g_assert(i);
gtk_widget_hide_all (i->dialog);
if (gtk_toggle_button_get_active
(GTK_TOGGLE_BUTTON (i->close_checkbutton)))
gtk_widget_hide_all (i->dialog);
gnc_set_boolean_option ("__gui", "hbci_close_on_finish",
gtk_toggle_button_get_active
(GTK_TOGGLE_BUTTON (i->close_checkbutton)));
}
void GNCInteractor_delete(GNCInteractor *data)