HListView component with animations

This commit is contained in:
miruka
2019-05-13 13:15:03 -04:00
parent 4024eee460
commit 2da7214af1
8 changed files with 39 additions and 7 deletions

View File

@@ -318,8 +318,9 @@ class SignalManager(QObject):
if not event.isLocalEcho:
continue
sb = (event.dict["sender"], event.dict["body"])
new_sb = (new_event.dict["sender"], new_event.dict["body"])
sb = (event.dict.get("sender"), event.dict.get("body"))
new_sb = (new_event.dict.get("sender"),
new_event.dict.get("body"))
if sb == new_sb:
# The oldest matching local echo shall be replaced