Don't have local echoes stay fixed at the bottom

This commit is contained in:
miruka
2019-10-24 10:28:07 -04:00
parent 986e39cdc2
commit 7090ff601f
2 changed files with 1 additions and 6 deletions

View File

@@ -148,12 +148,6 @@ class Event(ModelItem):
def __lt__(self, other: "Event") -> bool:
# Sort events from newest to oldest. return True means return False.
# Local echoes always stay first.
if self.is_local_echo and not other.is_local_echo:
return True
if other.is_local_echo and not self.is_local_echo:
return False
return self.date > other.date
@property