From 4c894d7fca9eb6e5d9a72e29a6ff611c18886294 Mon Sep 17 00:00:00 2001 From: Dave Peticolas Date: Thu, 29 Jun 2000 07:05:56 +0000 Subject: [PATCH] Bug fix in budget dialog. Remove gmakeism from build system. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@2526 57a11ea4-9604-0410-9ed3-97b8803252fd --- ChangeLog | 2 ++ src/gnome/dialog-budget.c | 2 ++ 2 files changed, 4 insertions(+) diff --git a/ChangeLog b/ChangeLog index c57233732f..c3643fb0bc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2000-06-28 Dave Peticolas + * src/gnome/dialog-budget.c (entry_down_button_clicked): bug fix. + * src/gnome/dialog-options.c: implement font options. * src/scm/prefs.scm: add options for the register fonts. diff --git a/src/gnome/dialog-budget.c b/src/gnome/dialog-budget.c index b0374dc1cc..0ef35a27dd 100644 --- a/src/gnome/dialog-budget.c +++ b/src/gnome/dialog-budget.c @@ -811,6 +811,8 @@ entry_down_button_clicked(GtkButton *button, BudgetDialog *bd) if (sibling == NULL) return; + sibling = get_next_sibling_node(bd, sibling); + gtk_ctree_move(ctree, node, parent, sibling); if (gtk_ctree_node_is_visible(ctree, node) != GTK_VISIBILITY_FULL) gtk_ctree_node_moveto(ctree, node, 0, 0.5, 0);