From eb1664326e69757b18abd5fef8d22c9a328a2d28 Mon Sep 17 00:00:00 2001 From: Michael Bohlender Date: Sun, 4 Sep 2016 15:15:58 +0200 Subject: able to show all mails and not segfault by random mails (tempfix) --- framework/domain/messageparser.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'framework') diff --git a/framework/domain/messageparser.cpp b/framework/domain/messageparser.cpp index 8363e119..ff763aec 100644 --- a/framework/domain/messageparser.cpp +++ b/framework/domain/messageparser.cpp @@ -89,7 +89,8 @@ QVariant PartModel::data(const QModelIndex &index, int role) const case Type: return part->metaObject()->className(); case IsHidden: - return part->property("isHidden").toBool(); + return false; + //return part->property("isHidden").toBool(); } } -- cgit v1.2.3