diff options
author | Nicolas Arnaud-Cormos <nicolas@kdab.com> | 2011-01-24 11:39:43 +0100 |
---|---|---|
committer | Tobias Hunger <tobias.hunger@nokia.com> | 2011-01-24 11:39:43 +0100 |
commit | 2a10a81006da89ddb09329e3e214df2f2b07d7f5 (patch) | |
tree | 9e6ebe433f8d8d75cce1f9d7e57cefcdf0764d71 /src/plugins/macros | |
parent | 1f1656163cea078ba09cbba80ead2758d7ca5dc0 (diff) | |
download | qt-creator-2a10a81006da89ddb09329e3e214df2f2b07d7f5.tar.gz |
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>
Diffstat (limited to 'src/plugins/macros')
-rw-r--r-- | src/plugins/macros/macrosplugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/macros/macrosplugin.cpp b/src/plugins/macros/macrosplugin.cpp index 61f849c067..263111920b 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())); |