From: Paul Mangan Date: Fri, 12 Aug 2011 13:57:41 +0000 (+0000) Subject: 2011-08-12 [paul] 3.7.9cvs45 X-Git-Tag: rel_3_7_10~9 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=b8f9675a02e98096092368be8267f24627693e2b 2011-08-12 [paul] 3.7.9cvs45 * src/mimeview.c 3.7.9cvs43 mistakenly dropped off the info about the mime part from the tooltip --- diff --git a/ChangeLog b/ChangeLog index 4d94ba5a9..3f30627c4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2011-08-12 [paul] 3.7.9cvs45 + + * src/mimeview.c + 3.7.9cvs43 mistakenly dropped off the info + about the mime part from the tooltip + 2011-08-12 [wwp] 3.7.9cvs44 * src/gtk/quicksearch.c diff --git a/PATCHSETS b/PATCHSETS index 13af21216..b750d82fc 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -4196,3 +4196,4 @@ ( cvs diff -u -r 1.382.2.577 -r 1.382.2.578 src/compose.c; ) > 3.7.9cvs42.patchset ( cvs diff -u -r 1.83.2.168 -r 1.83.2.169 src/mimeview.c; ) > 3.7.9cvs43.patchset ( cvs diff -u -r 1.1.2.102 -r 1.1.2.103 src/gtk/quicksearch.c; ) > 3.7.9cvs44.patchset +( cvs diff -u -r 1.83.2.169 -r 1.83.2.170 src/mimeview.c; ) > 3.7.9cvs45.patchset diff --git a/configure.ac b/configure.ac index f5662c594..fd0070d9b 100644 --- a/configure.ac +++ b/configure.ac @@ -12,7 +12,7 @@ MINOR_VERSION=7 MICRO_VERSION=9 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=44 +EXTRA_VERSION=45 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/mimeview.c b/src/mimeview.c index 21ef99687..2f585c0a2 100644 --- a/src/mimeview.c +++ b/src/mimeview.c @@ -2404,7 +2404,7 @@ static void icon_list_append_icon (MimeView *mimeview, MimeInfo *mimeinfo) g_free(tmp); } if (sigshort && *sigshort) { - tiptmp = g_markup_escape_text(sigshort, -1); + tiptmp = g_strjoin("\n", tip, g_markup_escape_text(sigshort, -1), NULL); g_free(tip); tip = tiptmp; }