summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--framework/domain/messageparser.cpp3
1 files changed, 2 insertions, 1 deletions
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
89 case Type: 89 case Type:
90 return part->metaObject()->className(); 90 return part->metaObject()->className();
91 case IsHidden: 91 case IsHidden:
92 return part->property("isHidden").toBool(); 92 return false;
93 //return part->property("isHidden").toBool();
93 94
94 } 95 }
95 } 96 }