Bug #616093: Notes are not editable in scheduled transaction edit window

Patch by James Raehl:

The Notes field is not visible or editable.

This appears to be a deliberate choice, as can be seen in line 1308 of
gnome/dialog-sx-editor.c routine schedXact_editor_create_ledger.  I disagree.
Since Notes are not copied to the newly-created scheduled transaction, there is
no way for the user to copy Notes to the model, nor to modify the Notes.  This
makes the partial fix in r16652 for bug 500427 kind of pointless.

This patch reverses that decision.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@19060 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Christian Stimming 2010-04-23 20:10:58 +00:00
parent 81527bfcfd
commit 8e3b75e4a9

View File

@ -1364,10 +1364,10 @@ schedXact_editor_create_ledger( GncSxEditorDialog *sxed )
gnc_embedded_window_open_page (sxed->embed_window, sxed->plugin_page); gnc_embedded_window_open_page (sxed->embed_window, sxed->plugin_page);
/* configure... */ /* configure... */
/* don't use double-line */ /* use double-line, so scheduled transaction Notes can be edited */
gnc_split_register_config(splitreg, gnc_split_register_config(splitreg,
splitreg->type, splitreg->style, splitreg->type, splitreg->style,
FALSE); TRUE);
gnc_split_register_set_auto_complete(splitreg, FALSE); gnc_split_register_set_auto_complete(splitreg, FALSE);
/* don't show present/future divider [by definition, not necessary] */ /* don't show present/future divider [by definition, not necessary] */