2006-09-04 [colin] 2.4.0cvs145
* src/mimeview.c * src/messageview.c Fix multiple loads in separate messageview
This commit is contained in:
parent
9f315b582c
commit
a0c08e07cc
5 changed files with 14 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2006-09-04 [colin] 2.4.0cvs145
|
||||
|
||||
* src/mimeview.c
|
||||
* src/messageview.c
|
||||
Fix multiple loads in separate messageview
|
||||
|
||||
2006-09-04 [colin] 2.4.0cvs144
|
||||
|
||||
* src/summaryview.c
|
||||
|
|
|
@ -1836,3 +1836,4 @@
|
|||
( cvs diff -u -r 1.14.2.37 -r 1.14.2.38 src/plugins/trayicon/trayicon.c; ) > 2.4.0cvs142.patchset
|
||||
( cvs diff -u -r 1.94.2.102 -r 1.94.2.103 src/messageview.c; cvs diff -u -r 1.395.2.242 -r 1.395.2.243 src/summaryview.c; cvs diff -u -r 1.96.2.144 -r 1.96.2.145 src/textview.c; cvs diff -u -r 1.12.2.12 -r 1.12.2.13 src/textview.h; ) > 2.4.0cvs143.patchset
|
||||
( cvs diff -u -r 1.395.2.243 -r 1.395.2.244 src/summaryview.c; ) > 2.4.0cvs144.patchset
|
||||
( cvs diff -u -r 1.83.2.83 -r 1.83.2.84 src/mimeview.c; cvs diff -u -r 1.94.2.103 -r 1.94.2.104 src/messageview.c; ) > 2.4.0cvs145.patchset
|
||||
|
|
|
@ -11,7 +11,7 @@ MINOR_VERSION=4
|
|||
MICRO_VERSION=0
|
||||
INTERFACE_AGE=0
|
||||
BINARY_AGE=0
|
||||
EXTRA_VERSION=144
|
||||
EXTRA_VERSION=145
|
||||
EXTRA_RELEASE=
|
||||
EXTRA_GTK2_VERSION=
|
||||
|
||||
|
|
|
@ -757,6 +757,10 @@ gint messageview_show(MessageView *messageview, MsgInfo *msginfo,
|
|||
gchar *subject = NULL;
|
||||
g_return_val_if_fail(msginfo != NULL, -1);
|
||||
|
||||
if (messageview->mimeview->textview &&
|
||||
messageview->mimeview->textview->loading)
|
||||
return 0;
|
||||
|
||||
if (messageview->toolbar)
|
||||
toolbar_set_learn_button
|
||||
(messageview->toolbar,
|
||||
|
|
|
@ -505,6 +505,8 @@ static void mimeview_show_message_part(MimeView *mimeview, MimeInfo *partinfo)
|
|||
const gchar *fname;
|
||||
|
||||
if (!partinfo) return;
|
||||
if (partinfo == mimeview->opened)
|
||||
return;
|
||||
|
||||
fname = mimeview->file;
|
||||
if (!fname) return;
|
||||
|
|
Loading…
Reference in a new issue