Correctly open an account and its sub-accounts. Fixes 330745.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@13197 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
David Hampton 2006-02-11 03:54:24 +00:00
parent 11a9890323
commit 06c9aba901
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2006-02-10 David Hampton <hampton@employees.org>
* src/gnome/gnc-plugin-page-account-tree.c: Correctly open an
account and its sub-accounts. Fixes 330745.
2006-02-10 Derek Atkins <derek@ihtfp.com> 2006-02-10 Derek Atkins <derek@ihtfp.com>
* src/gnome-utils/dialog-options.c: * src/gnome-utils/dialog-options.c:

View File

@ -601,7 +601,7 @@ gppat_open_account_common (GncPluginPageAccountTree *page,
priv = GNC_PLUGIN_PAGE_ACCOUNT_TREE_GET_PRIVATE(page); priv = GNC_PLUGIN_PAGE_ACCOUNT_TREE_GET_PRIVATE(page);
window = GNC_PLUGIN_PAGE (page)->window; window = GNC_PLUGIN_PAGE (page)->window;
new_page = gnc_plugin_page_register_new (account, FALSE); new_page = gnc_plugin_page_register_new (account, include_subs);
gnc_main_window_open_page (GNC_MAIN_WINDOW(window), new_page); gnc_main_window_open_page (GNC_MAIN_WINDOW(window), new_page);
} }