2006-05-18 [paul] 2.2.0cvs32

* src/summaryview.c
		keep Mailing-List menu refreshed
		Thanks to Colin
This commit is contained in:
Paul Mangan 2006-05-18 11:21:41 +00:00
parent 688512843f
commit 00517cbe25
4 changed files with 12 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2006-05-18 [paul] 2.2.0cvs32
* src/summaryview.c
keep Mailing-List menu refreshed
Thanks to Colin
2006-05-18 [paul] 2.2.0cvs31
* manual/advanced.xml

View file

@ -1501,3 +1501,4 @@
( cvs diff -u -r 1.115.2.86 -r 1.115.2.87 src/main.c; cvs diff -u -r 1.83.2.68 -r 1.83.2.69 src/mimeview.c; ) > 2.2.0cvs29.patchset
( cvs diff -u -r 1.1.2.6 -r 1.1.2.7 manual/handling.xml; cvs diff -u -r 1.1.2.3 -r 1.1.2.4 manual/fr/handling.xml; ) > 2.2.0cvs30.patchset
( cvs diff -u -r 1.1.2.15 -r 1.1.2.16 manual/advanced.xml; cvs diff -u -r 1.1.2.8 -r 1.1.2.9 manual/faq.xml; cvs diff -u -r 1.1.2.8 -r 1.1.2.9 manual/glossary.xml; cvs diff -u -r 1.1.2.7 -r 1.1.2.8 manual/handling.xml; cvs diff -u -r 1.1.2.6 -r 1.1.2.7 manual/intro.xml; cvs diff -u -r 1.1.2.11 -r 1.1.2.12 manual/plugins.xml; cvs diff -u -r 1.1.2.5 -r 1.1.2.6 manual/sylpheed-claws-manual.xml; cvs diff -u -r 1.1.2.30 -r 1.1.2.31 src/wizard.c; cvs diff -u -r 1.9.2.24 -r 1.9.2.25 src/common/defs.h; cvs diff -u -r 1.4.2.32 -r 1.4.2.33 src/gtk/about.c; cvs diff -u -r 1.2 -r 1.3 src/plugins/dillo_viewer/README; ) > 2.2.0cvs31.patchset
( cvs diff -u -r 1.395.2.200 -r 1.395.2.201 src/summaryview.c; ) > 2.2.0cvs32.patchset

View file

@ -11,7 +11,7 @@ MINOR_VERSION=2
MICRO_VERSION=0
INTERFACE_AGE=0
BINARY_AGE=0
EXTRA_VERSION=31
EXTRA_VERSION=32
EXTRA_RELEASE=
EXTRA_GTK2_VERSION=

View file

@ -848,6 +848,9 @@ gboolean summary_show(SummaryView *summaryview, FolderItem *item)
is_refresh = (item == summaryview->folder_item) ? TRUE : FALSE;
if (!is_refresh)
main_create_mailing_list_menu (summaryview->mainwin, NULL);
if (!prefs_common.summary_quicksearch_sticky
&& !prefs_common.summary_quicksearch_recurse
&& !quicksearch_is_running(summaryview->quicksearch)
@ -5067,6 +5070,7 @@ static void summary_selected(GtkCTree *ctree, GtkCTreeNode *row,
msginfo = gtk_ctree_node_get_row_data(ctree, row);
g_return_if_fail(msginfo != NULL);
main_create_mailing_list_menu (summaryview->mainwin, msginfo);
toolbar_set_learn_button
(summaryview->mainwin->toolbar,
MSG_IS_SPAM(msginfo->flags)?LEARN_HAM:LEARN_SPAM);