| 923 | } |
| 924 | |
| 925 | inline bool groupContains(const selection::ISelectionGroupPtr& group, const scene::INodePtr& node) |
| 926 | { |
| 927 | bool found = false; |
| 928 | |
| 929 | group->foreachNode([&](const scene::INodePtr& member) |
| 930 | { |
| 931 | if (member == node) found = true; |
| 932 | }); |
| 933 | |
| 934 | return found; |
| 935 | } |
| 936 | |
| 937 | // The group containing the 1 brushes has been dissolved in the changed map |
| 938 | TEST_F(SelectionGroupMergeTest, GroupRemoved) |