diff options
author | Milan Crha <mcrha@redhat.com> | 2013-08-09 16:17:51 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2013-08-09 16:17:51 +0800 |
commit | 9f8628e44bd6effc35a401f96420b644a1552af4 (patch) | |
tree | ef004f81647d806a172aa2f62a096fc3362960e1 /plugins/external-editor | |
parent | 19733380f346d8ac0ac2f1395cf5fc2057eeffb4 (diff) | |
download | gsoc2013-evolution-9f8628e44bd6effc35a401f96420b644a1552af4.tar.gz gsoc2013-evolution-9f8628e44bd6effc35a401f96420b644a1552af4.tar.zst gsoc2013-evolution-9f8628e44bd6effc35a401f96420b644a1552af4.zip |
Bug #704549 - Missing mnemonic in External Editor plugin configuration
Diffstat (limited to 'plugins/external-editor')
-rw-r--r-- | plugins/external-editor/external-editor.c | 4 |
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); |