diff options
author | Harish Krishnaswamy <kharish@novell.com> | 2006-01-16 23:59:03 +0800 |
---|---|---|
committer | Harish Krishnaswamy <kharish@src.gnome.org> | 2006-01-16 23:59:03 +0800 |
commit | 12cb4aa5b77134ff198566f4c4df52bbfc8d0e1e (patch) | |
tree | e3c3fac1966d67f62c6bae6a18089bf44148ee62 /mail | |
parent | 20a6d1935515f9ca4cb6317f386e8eb644b81547 (diff) | |
download | gsoc2013-evolution-12cb4aa5b77134ff198566f4c4df52bbfc8d0e1e.tar.gz gsoc2013-evolution-12cb4aa5b77134ff198566f4c4df52bbfc8d0e1e.tar.zst gsoc2013-evolution-12cb4aa5b77134ff198566f4c4df52bbfc8d0e1e.zip |
remove shortcut keys (UI Hackfest - See
2006-01-16 Harish Krishnaswamy <kharish@novell.com>
* mail-component.c: (impl__get_userCreatableItems):
remove shortcut keys (UI Hackfest -
See http://go-evolution.org/Shortcut_Keys_Review).
svn path=/trunk/; revision=31217
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 6 | ||||
-rw-r--r-- | mail/mail-component.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index b6499e0182..5e57eaf742 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,9 @@ +2006-01-16 Harish Krishnaswamy <kharish@novell.com> + + * mail-component.c: (impl__get_userCreatableItems): + remove shortcut keys (UI Hackfest - + See http://go-evolution.org/Shortcut_Keys_Review). + 2006-01-16 Srinivasa Ragavan <sragavan@novell.com> ** Fixes bug #326877 diff --git a/mail/mail-component.c b/mail/mail-component.c index bfedb644ec..e6eb247b37 100644 --- a/mail/mail-component.c +++ b/mail/mail-component.c @@ -787,7 +787,7 @@ impl__get_userCreatableItems (PortableServer_Servant servant, CORBA_Environment list->_buffer[1].description = _("New Mail Folder"); list->_buffer[1].menuDescription = _("Mail _Folder"); list->_buffer[1].tooltip = _("Create a new mail folder"); - list->_buffer[1].menuShortcut = 'f'; + list->_buffer[1].menuShortcut = '\0'; list->_buffer[1].iconName = "stock_new-dir"; list->_buffer[1].type = GNOME_Evolution_CREATABLE_FOLDER; |