mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 15:38:00 +02:00
avoiding the exclusive filtering behavior
This commit is contained in:
parent
960f4f0ead
commit
305e308575
1 changed files with 1 additions and 1 deletions
|
@ -170,7 +170,7 @@ namespace render {
|
||||||
for (size_t i = 0; i < NUM_FILTERS; i++) {
|
for (size_t i = 0; i < NUM_FILTERS; i++) {
|
||||||
if (_filters[i].test(itemKey)) {
|
if (_filters[i].test(itemKey)) {
|
||||||
outItems[i].template edit<ItemBounds>().emplace_back(itemBound);
|
outItems[i].template edit<ItemBounds>().emplace_back(itemBound);
|
||||||
break;
|
// break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue