Disabled filter clip by default and made it optional, fixes #12368, likely others too

This commit is contained in:
Juan Linietsky 2017-11-10 09:21:33 -03:00
parent fb60662cd9
commit 19b1ff0fc5
6 changed files with 30 additions and 7 deletions

View file

@ -956,15 +956,15 @@ void SpaceSW::call_queries() {
while (state_query_list.first()) {
BodySW *b = state_query_list.first()->self();
b->call_queries();
state_query_list.remove(state_query_list.first());
b->call_queries();
}
while (monitor_query_list.first()) {
AreaSW *a = monitor_query_list.first()->self();
a->call_queries();
monitor_query_list.remove(monitor_query_list.first());
a->call_queries();
}
}