From 2991f677833cef9e25aeb484eb57e2c24a065447 Mon Sep 17 00:00:00 2001 From: Geert Janssens Date: Tue, 2 Feb 2010 11:20:49 +0000 Subject: [PATCH] Bug #589320 Price Editor - Currency Namespace does not show up This bug was introduced by r18062 (applying a patch from bug #580281 Entering multiple pices with price editor is tedious) For some unknown reason, r18062 assumed exchange rates are not supposed to be edited via the Price Editor dialog. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@18601 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/gnome/dialog-price-editor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gnome/dialog-price-editor.c b/src/gnome/dialog-price-editor.c index be01fba691..12454bc6b7 100644 --- a/src/gnome/dialog-price-editor.c +++ b/src/gnome/dialog-price-editor.c @@ -379,7 +379,7 @@ gnc_price_pedit_dialog_create (GtkWidget *parent, pedit_dialog->namespace_cbe = w; gtk_combo_box_remove_text(GTK_COMBO_BOX(pedit_dialog->namespace_cbe), 0); gnc_cbe_require_list_item(GTK_COMBO_BOX_ENTRY(pedit_dialog->namespace_cbe)); - gnc_ui_update_namespace_picker(w, NULL, DIAG_COMM_NON_CURRENCY); + gnc_ui_update_namespace_picker(w, NULL, DIAG_COMM_ALL); w = glade_xml_get_widget (xml, "commodity_cbe"); pedit_dialog->commodity_cbe = w;