From 2fdbed9939b94b68c7f69e06e0f1ba59ba22d69f Mon Sep 17 00:00:00 2001 From: David Hampton Date: Sun, 2 Apr 2006 21:59:28 +0000 Subject: [PATCH] Change the access key on the Transaction menu to not conflict with the Tools menu. Fixes 336829. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@13727 57a11ea4-9604-0410-9ed3-97b8803252fd --- ChangeLog | 6 ++++++ src/gnome-utils/gnc-main-window.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 3294bb3101..afd25a0e52 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2006-04-02 David Hampton + + * src/gnome-utils/gnc-main-window.c: Change the access key on the + Transaction menu to not conflict with the Tools menu. Fixes + 336829. + 2006-04-02 Andreas Köhler * src/gnome-utils/dialog-account.c: Set search column for account diff --git a/src/gnome-utils/gnc-main-window.c b/src/gnome-utils/gnc-main-window.c index a0838d525b..f7dbd98e6f 100644 --- a/src/gnome-utils/gnc-main-window.c +++ b/src/gnome-utils/gnc-main-window.c @@ -218,7 +218,7 @@ static GtkActionEntry gnc_menu_actions [] = { "EditAction", NULL, N_("_Edit"), NULL, NULL, NULL }, { "ViewAction", NULL, N_("_View"), NULL, NULL, NULL }, { "ActionsAction", NULL, N_("_Actions"), NULL, NULL, NULL }, - { "TransactionAction", NULL, N_("_Transaction"), NULL, NULL, NULL }, + { "TransactionAction", NULL, N_("Tra_nsaction"), NULL, NULL, NULL }, { "ReportsAction", NULL, N_("_Reports"), NULL, NULL, NULL }, { "ToolsAction", NULL, N_("_Tools"), NULL, NULL, NULL }, { "ExtensionsAction", NULL, N_("E_xtensions"), NULL, NULL, NULL },