Commit 8eb097bc authored by Dan Pascu's avatar Dan Pascu

Added missing notification handler

parent 2a98295e
......@@ -1459,6 +1459,9 @@ class ConferenceParticipantModel(QAbstractListModel):
def _NH_BlinkSessionWillAddParticipant(self, notification):
self.addParticipant(ConferenceParticipantItem(notification.data.participant))
def _NH_BlinkSessionDidNotAddParticipant(self, notification):
self.removeParticipant(notification.data.participant.participant_item)
def _NH_BlinkSessionDidRemoveParticipant(self, notification):
self.removeParticipant(notification.data.participant.participant_item)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment