mirror of https://github.com/GNOME/gimp.git
gimp_image_item_list_filter(): actually honor the passed parameters
Gah, I added these parameters for a reason, so do *not* remove all child items if remove_children is FALSE.
This commit is contained in:
parent
19a168cb9d
commit
f05c5ecfdc
|
@ -252,6 +252,8 @@ gimp_image_item_list_filter (const GimpItem *exclude,
|
|||
if (! list)
|
||||
return NULL;
|
||||
|
||||
if (remove_children)
|
||||
{
|
||||
if (exclude)
|
||||
list = gimp_image_item_list_remove_children (list, exclude);
|
||||
|
||||
|
@ -266,6 +268,7 @@ gimp_image_item_list_filter (const GimpItem *exclude,
|
|||
if (next)
|
||||
next->prev = l;
|
||||
}
|
||||
}
|
||||
|
||||
if (remove_locked)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue