talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit 6406b6f565bba63d66e51637b2b708208c2d8ca7
parent 2b02f42504f10133602e883a1d5d884e770531db
Author: Colin Leroy <colin@colino.net>
Date:   Sun, 12 Aug 2012 16:16:45 +0000

2012-08-12 [colin]	3.8.1cvs31

	* src/messageview.c
		Fix comparison, thanks to Michael Gmelin

Diffstat:
MChangeLog | 5+++++
MPATCHSETS | 1+
Mconfigure.ac | 2+-
Msrc/messageview.c | 2+-
4 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog @@ -1,3 +1,8 @@ +2012-08-12 [colin] 3.8.1cvs31 + + * src/messageview.c + Fix comparison, thanks to Michael Gmelin + 2012-08-12 [colin] 3.8.1cvs30 * src/messageview.c diff --git a/PATCHSETS b/PATCHSETS @@ -4405,3 +4405,4 @@ ( cvs diff -u -r 1.59.2.90 -r 1.59.2.91 src/prefs_filtering.c; ) > 3.8.1cvs28.patchset ( cvs diff -u -r 1.382.2.607 -r 1.382.2.608 src/compose.c; ) > 3.8.1cvs29.patchset ( cvs diff -u -r 1.94.2.235 -r 1.94.2.236 src/messageview.c; cvs diff -u -r 1.9.2.54 -r 1.9.2.55 src/common/ssl.c; ) > 3.8.1cvs30.patchset +( cvs diff -u -r 1.94.2.236 -r 1.94.2.237 src/messageview.c; ) > 3.8.1cvs31.patchset diff --git a/configure.ac b/configure.ac @@ -12,7 +12,7 @@ MINOR_VERSION=8 MICRO_VERSION=1 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=30 +EXTRA_VERSION=31 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/messageview.c b/src/messageview.c @@ -1469,7 +1469,7 @@ gint messageview_show(MessageView *messageview, MsgInfo *msginfo, goto done; } else if (mimeinfo->type == MIMETYPE_TEXT && !strcasecmp(mimeinfo->subtype, "html") && - mimeinfo->disposition == DISPOSITIONTYPE_ATTACHMENT && + mimeinfo->disposition != DISPOSITIONTYPE_ATTACHMENT && prefs_common.promote_html_part) { mimeview_select_mimepart_icon(messageview->mimeview, mimeinfo); goto done;