mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Properly ignore internal report options that are not on invisible option pages when opening the report options dialog
This commit is contained in:
parent
350dd690fd
commit
1a84b4a000
@ -1010,6 +1010,11 @@ gnc_option_set_ui_widget(GNCOption *option,
|
|||||||
LEAVE("bad type");
|
LEAVE("bad type");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
else if (g_strcmp0 (type, "internal") == 0)
|
||||||
|
{
|
||||||
|
LEAVE("internal type");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
raw_name = gnc_option_name(option);
|
raw_name = gnc_option_name(option);
|
||||||
if (raw_name && *raw_name)
|
if (raw_name && *raw_name)
|
||||||
|
Loading…
Reference in New Issue
Block a user