diff options
author | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2006-03-10 02:51:15 +0000 |
---|---|---|
committer | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2006-03-10 02:51:15 +0000 |
commit | 3803fc8d9845990819eefdcfd6c46c31658aa1b3 (patch) | |
tree | 285876dc6d94151e5b3bdfb86972fad5cd9ccff3 /src/mainwindow.c | |
parent | a8dd8ec8af07826434cf28bca75b5261528f806d (diff) |
printing messages now follows 'Show all headers'.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@1038 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/mainwindow.c')
-rw-r--r-- | src/mainwindow.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mainwindow.c b/src/mainwindow.c index 83b54dee..15f3fe4d 100644 --- a/src/mainwindow.c +++ b/src/mainwindow.c @@ -705,7 +705,7 @@ static GtkItemFactoryEntry mainwin_entries[] = {N_("/_View/---"), NULL, NULL, 0, "<Separator>"}, {N_("/_View/Open in new _window"), "<control><alt>N", open_msg_cb, 0, NULL}, {N_("/_View/Mess_age source"), "<control>U", view_source_cb, 0, NULL}, - {N_("/_View/Show all _header"), "<control>H", show_all_header_cb, 0, "<ToggleItem>"}, + {N_("/_View/Show all _headers"), "<control>H", show_all_header_cb, 0, "<ToggleItem>"}, {N_("/_View/---"), NULL, NULL, 0, "<Separator>"}, {N_("/_View/_Update summary"), "<control><alt>U", update_summary_cb, 0, NULL}, @@ -1938,7 +1938,7 @@ void main_window_set_menu_sensitive(MainWindow *mainwin) {"/View/Go to/Prev labeled message", M_MSG_EXIST}, {"/View/Go to/Next labeled message", M_MSG_EXIST}, {"/View/Open in new window" , M_SINGLE_TARGET_EXIST}, - {"/View/Show all header" , M_SINGLE_TARGET_EXIST}, + {"/View/Show all headers" , M_SINGLE_TARGET_EXIST}, {"/View/Message source" , M_SINGLE_TARGET_EXIST}, {"/Message/Receive/Get from current account" @@ -2065,7 +2065,7 @@ void main_window_set_menu_sensitive(MainWindow *mainwin) (item != NULL)); } - SET_CHECK_MENU_ACTIVE("/View/Show all header", + SET_CHECK_MENU_ACTIVE("/View/Show all headers", mainwin->messageview->textview->show_all_headers); SET_CHECK_MENU_ACTIVE("/View/Thread view", (state & M_THREADED) != 0); |