From dfb779641aacef480112f722fe8a6b3154ff9984 Mon Sep 17 00:00:00 2001 From: Thomas McGuire Date: Thu, 26 Feb 2009 20:59:05 +0000 Subject: [PATCH] Make Ctrl+I the shortcut for marking messages as important, like in Akregator. svn path=/trunk/KDE/kdepim/; revision=932532 --- messageactions.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/messageactions.cpp b/messageactions.cpp index b7d59aec0..cd7bcb2d5 100644 --- a/messageactions.cpp +++ b/messageactions.cpp @@ -121,6 +121,7 @@ MessageActions::MessageActions( KActionCollection *ac, QWidget * parent ) : mToggleFlagAction = new KToggleAction( KIcon("mail-mark-important"), i18n("Mark Message as &Important"), this ); + mToggleFlagAction->setShortcut( Qt::CTRL + Qt::Key_I ); connect( mToggleFlagAction, SIGNAL(triggered(bool)), this, SLOT(slotSetMsgStatusFlag()) ); mToggleFlagAction->setCheckedState( KGuiItem(i18n("Remove &Important Message Mark")) );