aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2013-08-09 16:17:51 +0800
committerMilan Crha <mcrha@redhat.com>2013-08-09 16:17:51 +0800
commit9f8628e44bd6effc35a401f96420b644a1552af4 (patch)
treeef004f81647d806a172aa2f62a096fc3362960e1
parent19733380f346d8ac0ac2f1395cf5fc2057eeffb4 (diff)
downloadgsoc2013-evolution-9f8628e44bd6effc35a401f96420b644a1552af4.tar
gsoc2013-evolution-9f8628e44bd6effc35a401f96420b644a1552af4.tar.gz
gsoc2013-evolution-9f8628e44bd6effc35a401f96420b644a1552af4.tar.bz2
gsoc2013-evolution-9f8628e44bd6effc35a401f96420b644a1552af4.tar.lz
gsoc2013-evolution-9f8628e44bd6effc35a401f96420b644a1552af4.tar.xz
gsoc2013-evolution-9f8628e44bd6effc35a401f96420b644a1552af4.tar.zst
gsoc2013-evolution-9f8628e44bd6effc35a401f96420b644a1552af4.zip
Bug #704549 - Missing mnemonic in External Editor plugin configuration
-rw-r--r--plugins/external-editor/external-editor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/external-editor/external-editor.c b/plugins/external-editor/external-editor.c
index d31b0d8e54..8f6e782919 100644
--- a/plugins/external-editor/external-editor.c
+++ b/plugins/external-editor/external-editor.c
@@ -119,8 +119,8 @@ e_plugin_lib_get_configure_widget (EPlugin *epl)
g_free (editor);
}
- checkbox = gtk_check_button_new_with_label (
- _("Automatically launch when a new mail is edited"));
+ checkbox = gtk_check_button_new_with_mnemonic (
+ _("_Automatically launch when a new mail is edited"));
checked = g_settings_get_boolean (settings, "launch-on-key-press");
if (checked)
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (checkbox), TRUE);