Skip to content
Snippets Groups Projects
Commit 98c5cb59 authored by Guillaume Roguez's avatar Guillaume Roguez Committed by Nicolas Jager
Browse files

PeopleProxy: do not filter-out Call type


Keep Call entries in PeopleProxy row filter.
This fixes the Conference entry display.

Change-Id: If2c4feb37536c37209add3e7c410cdc853f80475
Reviewed-by: default avatarNicolas Jäger <nicolas.jager@savoirfairelinux.com>
parent f8c9b85f
No related branches found
No related tags found
No related merge requests found
......@@ -1251,8 +1251,10 @@ PeopleProxy::filterAcceptsRow(int sourceRow, const QModelIndex & sourceParent) c
return filterFunction(cm);
}
// top nodes are only of type Person or ContactMethod
case Ring::ObjectType::Call:
return true;
// top nodes are only of type Person, ContactMethod or Call
case Ring::ObjectType::Media:
case Ring::ObjectType::Certificate:
case Ring::ObjectType::ContactRequest:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment