From f689d5b075b518ba685984898d8f1ea11fa784bb Mon Sep 17 00:00:00 2001 From: Montel Laurent Date: Wed, 28 Nov 2012 13:04:43 +0100 Subject: [PATCH] Fix Bug 310807 - "Rename" action missing in identity context menu FIXED-IN: 4.10 BUG: 310807 --- identitypage.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/identitypage.cpp b/identitypage.cpp index b2735a820..8e668dfca 100644 --- a/identitypage.cpp +++ b/identitypage.cpp @@ -281,6 +281,7 @@ void IdentityPage::slotContextMenu( IdentityListViewItem *item, const QPoint &po menu->addAction( i18n( "Add..." ), this, SLOT(slotNewIdentity()) ); if ( item ) { menu->addAction( i18n( "Modify..." ), this, SLOT(slotModifyIdentity()) ); + menu->addAction( i18n( "Rename" ), this, SLOT(slotRenameIdentity()) ); if ( mIPage.mIdentityList->topLevelItemCount() > 1 ) { menu->addAction( i18n( "Remove" ), this, SLOT(slotRemoveIdentity()) ); }