diff --git a/src/plugins/texteditor/texteditoractionhandler.cpp b/src/plugins/texteditor/texteditoractionhandler.cpp index a122704e4bc5f6ee5e58f3aff032e951a0d28fb9..4c9a5207ad8e6b48873bee175b390e5b2c130f95 100644 --- a/src/plugins/texteditor/texteditoractionhandler.cpp +++ b/src/plugins/texteditor/texteditoractionhandler.cpp @@ -143,7 +143,9 @@ void TextEditorActionHandler::createActions() m_rewrapParagraphAction = new QAction(tr("&Rewrap Paragraph"), this); command = am->registerAction(m_rewrapParagraphAction, TextEditor::Constants::REWRAP_PARAGRAPH, m_contextId); +#ifndef Q_WS_MAC command->setDefaultKeySequence(QKeySequence(tr("Ctrl+E, R"))); +#endif advancedMenu->addAction(command, Core::Constants::G_EDIT_FORMAT); connect(m_rewrapParagraphAction, SIGNAL(triggered(bool)), this, SLOT(rewrapParagraphAction()));