diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2015-12-18 13:08:59 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2015-12-18 13:08:59 +0100 |
commit | 3af80d6bce96009a66cebb0650f1f20cf4ef1be7 (patch) | |
tree | 340a0846dd44b7ec25748f0807403e66ff30dadb /framework/mail/singlemailcontroller.cpp | |
parent | ba6ef2c4e782f542c6a23b357f90030e930606da (diff) | |
download | kube-3af80d6bce96009a66cebb0650f1f20cf4ef1be7.tar.gz kube-3af80d6bce96009a66cebb0650f1f20cf4ef1be7.zip |
Load the full mime message in the viewer as well.
Diffstat (limited to 'framework/mail/singlemailcontroller.cpp')
-rw-r--r-- | framework/mail/singlemailcontroller.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/mail/singlemailcontroller.cpp b/framework/mail/singlemailcontroller.cpp index d7335a0b..fecf2fbc 100644 --- a/framework/mail/singlemailcontroller.cpp +++ b/framework/mail/singlemailcontroller.cpp | |||
@@ -22,7 +22,7 @@ void SingleMailController::loadMail(const QString &id) | |||
22 | query.syncOnDemand = false; | 22 | query.syncOnDemand = false; |
23 | query.processAll = false; | 23 | query.processAll = false; |
24 | query.liveQuery = false; | 24 | query.liveQuery = false; |
25 | query.requestedProperties << "subject" << "sender" << "senderName" << "date" << "unread" << "important"; | 25 | query.requestedProperties << "subject" << "sender" << "senderName" << "date" << "unread" << "important" << "mimeMessage"; |
26 | query.ids << id.toLatin1(); | 26 | query.ids << id.toLatin1(); |
27 | m_model->runQuery(query); | 27 | m_model->runQuery(query); |
28 | } \ No newline at end of file | 28 | } \ No newline at end of file |