From 2a10a81006da89ddb09329e3e214df2f2b07d7f5 Mon Sep 17 00:00:00 2001
From: Nicolas Arnaud-Cormos <nicolas@kdab.com>
Date: Mon, 24 Jan 2011 11:39:43 +0100
Subject: [PATCH] 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>
---
 src/plugins/macros/macrosplugin.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/plugins/macros/macrosplugin.cpp b/src/plugins/macros/macrosplugin.cpp
index 61f849c067b..263111920b5 100644
--- a/src/plugins/macros/macrosplugin.cpp
+++ b/src/plugins/macros/macrosplugin.cpp
@@ -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()));
 
-- 
GitLab