Show deleted messages

We used to show those, then a bug was fixed in the code that was
supposed to hide them.
This commit is contained in:
Tobias Fella
2021-05-21 22:30:51 +02:00
parent 3ea783b370
commit 116f883699

View File

@@ -12,7 +12,7 @@ bool MessageFilterModel::filterAcceptsRow(int sourceRow, const QModelIndex &sour
const int specialMarks = index.data(MessageEventModel::SpecialMarksRole).toInt();
if (specialMarks == EventStatus::Hidden || specialMarks == EventStatus::Replaced) {
if (specialMarks == EventStatus::Replaced) {
return false;
}