From 8e3b75e4a934781f6309b84fac6ee6009f32a010 Mon Sep 17 00:00:00 2001 From: Christian Stimming Date: Fri, 23 Apr 2010 20:10:58 +0000 Subject: [PATCH] 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 --- src/gnome/dialog-sx-editor.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gnome/dialog-sx-editor.c b/src/gnome/dialog-sx-editor.c index f402dfc36f..32e3c514da 100644 --- a/src/gnome/dialog-sx-editor.c +++ b/src/gnome/dialog-sx-editor.c @@ -1364,10 +1364,10 @@ schedXact_editor_create_ledger( GncSxEditorDialog *sxed ) gnc_embedded_window_open_page (sxed->embed_window, sxed->plugin_page); /* configure... */ - /* don't use double-line */ + /* use double-line, so scheduled transaction Notes can be edited */ gnc_split_register_config(splitreg, splitreg->type, splitreg->style, - FALSE); + TRUE); gnc_split_register_set_auto_complete(splitreg, FALSE); /* don't show present/future divider [by definition, not necessary] */