From 116f88369998b75dc1da8337ce130f7a6888ff14 Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Fri, 21 May 2021 22:30:51 +0200 Subject: [PATCH] Show deleted messages We used to show those, then a bug was fixed in the code that was supposed to hide them. --- src/messagefiltermodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/messagefiltermodel.cpp b/src/messagefiltermodel.cpp index 057f5c5e7..008380cf0 100644 --- a/src/messagefiltermodel.cpp +++ b/src/messagefiltermodel.cpp @@ -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; }