mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-30 18:39:23 +00:00
feat(src/components/conference/ConferenceHelperModel): invalidate filter on add/remove
This commit is contained in:
parent
bc74c7a7b0
commit
7b2992fda7
1 changed files with 4 additions and 2 deletions
|
|
@ -79,7 +79,7 @@ void ConferenceHelperModel::handleCallsAboutToBeRemoved (const QModelIndex &, in
|
|||
}
|
||||
|
||||
if (soFarSoGood) {
|
||||
invalidate();
|
||||
invalidateFilter();
|
||||
emit inConferenceChanged(mInConference);
|
||||
}
|
||||
}
|
||||
|
|
@ -90,8 +90,10 @@ void ConferenceHelperModel::handleCallRunning (int, CallModel *callModel) {
|
|||
? addToConference(sipAddress)
|
||||
: removeFromConference(sipAddress);
|
||||
|
||||
if (soFarSoGood)
|
||||
if (soFarSoGood) {
|
||||
invalidateFilter();
|
||||
emit inConferenceChanged(mInConference);
|
||||
}
|
||||
}
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue