diff --git a/src/gnome/window-reconcile.c b/src/gnome/window-reconcile.c index 96fd4aae93..21d00d7f86 100644 --- a/src/gnome/window-reconcile.c +++ b/src/gnome/window-reconcile.c @@ -453,6 +453,8 @@ recnInterestXferWindow( startRecnWindowData *data) _("Payment From") ); gnc_xfer_dialog_set_from_show_button_active( data->xferData, TRUE ); + // XXX: Set "from" account from previous interest payment. + gnc_xfer_dialog_set_to_account_label( data->xferData, _("Reconcile Account") ); gnc_xfer_dialog_select_to_account( data->xferData, data->account ); @@ -472,6 +474,8 @@ recnInterestXferWindow( startRecnWindowData *data) _("Payment To") ); gnc_xfer_dialog_set_to_show_button_active( data->xferData, TRUE ); + // XXX: Set "to" account from previous interest payment. + /* Quickfill based on the reconcile account, which is the "From" acct. */ gnc_xfer_dialog_quickfill_to_account( data->xferData, FALSE ); }