From 1a84b4a000cc242b463bcf32000d87492a2ed32b Mon Sep 17 00:00:00 2001 From: Geert Janssens Date: Wed, 20 Sep 2017 19:59:17 +0200 Subject: [PATCH] Properly ignore internal report options that are not on invisible option pages when opening the report options dialog --- src/gnome-utils/dialog-options.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/gnome-utils/dialog-options.c b/src/gnome-utils/dialog-options.c index 60a8903d54..26362e4aad 100644 --- a/src/gnome-utils/dialog-options.c +++ b/src/gnome-utils/dialog-options.c @@ -1010,6 +1010,11 @@ gnc_option_set_ui_widget(GNCOption *option, LEAVE("bad type"); return; } + else if (g_strcmp0 (type, "internal") == 0) + { + LEAVE("internal type"); + return; + } raw_name = gnc_option_name(option); if (raw_name && *raw_name)