aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2011-03-16 04:12:26 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2011-03-16 04:12:26 +0000
commit59de82044a9cadb85a9cf414159d3f4e2bbecc16 (patch)
tree30996a882962e5f3c99f900b3c0e7c352a495083
parenteedd980561564f94f0f246600203bf6a20abf4db (diff)
changed keyboard shortcut of File/Send to prevent accidental sending.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@2853 ee746299-78ed-0310-b773-934348b2243d
-rw-r--r--ChangeLog5
-rw-r--r--src/compose.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index b52d3bf2..29dabb09 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2011-03-16
+
+ * src/compose.c: changed keyboard shortcut of File/Send to prevent
+ accidental sending.
+
2011-03-14
* src/summaryview.c: mark messages read when message view becomes
diff --git a/src/compose.c b/src/compose.c
index 9a072d2a..79e1fce9 100644
--- a/src/compose.c
+++ b/src/compose.c
@@ -576,7 +576,7 @@ static GtkItemFactoryEntry compose_popup_entries[] =
static GtkItemFactoryEntry compose_entries[] =
{
{N_("/_File"), NULL, NULL, 0, "<Branch>"},
- {N_("/_File/_Send"), "<control>Return",
+ {N_("/_File/_Send"), "<shift><control>E",
compose_send_cb, 0, NULL},
{N_("/_File/Send _later"), "<shift><control>S",
compose_send_later_cb, 0, NULL},