aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--calendar/ChangeLog6
-rw-r--r--calendar/gui/memos-component.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 7301871189..03ac9e5ecf 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,9 @@
+2007-04-06 Matthew Barnes <mbarnes@redhat.com>
+
+ * gui/memos-component.c (impl__get_userCreatableItems):
+ Fix a duplicate keyboard shortcut. (#353922)
+ Patch from Diego Escalante Urrelo
+
2007-04-05 Matthew Barnes <mbarnes@redhat.com>
* gui/print.c (print_calendar): Fix a crasher. (#401539)
diff --git a/calendar/gui/memos-component.c b/calendar/gui/memos-component.c
index b304a41dbd..ad811e0512 100644
--- a/calendar/gui/memos-component.c
+++ b/calendar/gui/memos-component.c
@@ -1174,7 +1174,7 @@ impl__get_userCreatableItems (PortableServer_Servant servant,
list->_buffer[1].description = _("New shared memo");
list->_buffer[1].menuDescription = _("_Shared memo");
list->_buffer[1].tooltip = _("Create a shared new memo");
- list->_buffer[1].menuShortcut = 's';
+ list->_buffer[1].menuShortcut = 'h';
list->_buffer[1].iconName = "stock_insert-note";
list->_buffer[1].type = GNOME_Evolution_CREATABLE_OBJECT;