Change the default shortcut for execute macro.

Use the Alt+R, now that default shortcuts for save macros are not
created by default.

Merge-request: 236
Reviewed-by: Tobias Hunger <tobias.hunger@nokia.com>
This commit is contained in:
Nicolas Arnaud-Cormos
2011-01-24 11:39:43 +01:00
committed by Tobias Hunger
parent 1f1656163c
commit 2a10a81006

View File

@@ -111,7 +111,7 @@ bool MacrosPlugin::initialize(const QStringList &arguments, QString *error_messa
QAction *executeLastMacro = new QAction(tr("Execute Last Macro"), this);
command = am->registerAction(executeLastMacro, Constants::EXECUTE_LAST_MACRO, textContext);
command->setDefaultKeySequence(QKeySequence(tr("Alt+Shift+R")));
command->setDefaultKeySequence(QKeySequence(tr("Alt+R")));
mmacrotools->addAction(command);
connect(executeLastMacro, SIGNAL(triggered()), m_macroManager, SLOT(executeLastMacro()));