aboutsummaryrefslogtreecommitdiff
path: root/src/compose.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2007-01-30 05:00:31 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2007-01-30 05:00:31 +0000
commit4ac2fa43ff3f49550c8a4db7dcfae5c5be4cf4b3 (patch)
tree86c3456224ed788d5fa42a8b742e9aa91281ff23 /src/compose.c
parent264dfa2a7372a8b9edbae249f45a13009ff4162d (diff)
don't automatically hide Junk and Execute button.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@1511 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/compose.c')
-rw-r--r--src/compose.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/compose.c b/src/compose.c
index c3fecaaa..2455e391 100644
--- a/src/compose.c
+++ b/src/compose.c
@@ -4847,25 +4847,25 @@ static void compose_connect_changed_callbacks(Compose *compose)
static PrefsToolbarItem items[] =
{
{T_SEND, N_("Send message"),
- STOCK_PIXMAP_MAIL_SEND, toolbar_send_cb},
+ STOCK_PIXMAP_MAIL_SEND, NULL, toolbar_send_cb},
{T_SEND_LATER, N_("Put into queue folder and send later"),
- STOCK_PIXMAP_MAIL_SEND_QUEUE, toolbar_send_later_cb},
+ STOCK_PIXMAP_MAIL_SEND_QUEUE, NULL, toolbar_send_later_cb},
{T_DRAFT, N_("Save to draft folder"),
- STOCK_PIXMAP_MAIL, toolbar_draft_cb},
+ STOCK_PIXMAP_MAIL, NULL, toolbar_draft_cb},
{T_INSERT_FILE, N_("Insert file"),
- STOCK_PIXMAP_INSERT_FILE, toolbar_insert_cb},
+ STOCK_PIXMAP_INSERT_FILE, NULL, toolbar_insert_cb},
{T_ATTACH_FILE, N_("Attach file"),
- STOCK_PIXMAP_MAIL_ATTACH, toolbar_attach_cb},
+ STOCK_PIXMAP_MAIL_ATTACH, NULL, toolbar_attach_cb},
{T_SIGNATURE, N_("Append signature"),
- STOCK_PIXMAP_SIGN, toolbar_sig_cb},
+ STOCK_PIXMAP_SIGN, NULL, toolbar_sig_cb},
{T_EDITOR, N_("Edit with external editor"),
- STOCK_PIXMAP_MAIL_COMPOSE, toolbar_ext_editor_cb},
+ STOCK_PIXMAP_MAIL_COMPOSE, NULL, toolbar_ext_editor_cb},
{T_LINEWRAP, N_("Wrap all long lines"),
- STOCK_PIXMAP_LINEWRAP, toolbar_linewrap_cb},
+ STOCK_PIXMAP_LINEWRAP, NULL, toolbar_linewrap_cb},
{T_ADDRESS_BOOK, N_("Address book"),
- STOCK_PIXMAP_ADDRESS_BOOK, toolbar_address_cb},
+ STOCK_PIXMAP_ADDRESS_BOOK, NULL, toolbar_address_cb},
- {-1, NULL, -1, NULL}
+ {-1, NULL, -1, NULL, NULL}
};
static GtkWidget *compose_toolbar_create(Compose *compose)