Properly ignore internal report options that are not on invisible option pages when opening the report options dialog

This commit is contained in:
Geert Janssens 2017-09-20 19:59:17 +02:00
parent 350dd690fd
commit 1a84b4a000

View File

@ -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)