diff --git a/sources/editor/esevent/eseventaddterminal.cpp b/sources/editor/esevent/eseventaddterminal.cpp index a48516e99..7a1ef4eb2 100644 --- a/sources/editor/esevent/eseventaddterminal.cpp +++ b/sources/editor/esevent/eseventaddterminal.cpp @@ -87,7 +87,7 @@ bool ESEventAddTerminal::mouseReleaseEvent(QGraphicsSceneMouseEvent *event) { @return */ bool ESEventAddTerminal::keyPressEvent(QKeyEvent *event) { - if (event -> key() == Qt::Key_Space) { + if (event -> key() == Qt::Key_R) { switch (m_terminal->orientation()) { case Qet::North : diff --git a/sources/editor/ui/qetelementeditor.cpp b/sources/editor/ui/qetelementeditor.cpp index 6aed776a8..5ce82c31d 100644 --- a/sources/editor/ui/qetelementeditor.cpp +++ b/sources/editor/ui/qetelementeditor.cpp @@ -1000,7 +1000,7 @@ void QETElementEditor::setupActions() ui->m_paste_in_area_action -> setShortcut(tr("Ctrl+Shift+V")); ui->m_edit_names_action -> setShortcut(QKeySequence(tr("Ctrl+E"))); ui->m_edit_author_action -> setShortcut(tr("Ctrl+Y")); - ui->m_rotate_action -> setShortcut(QKeySequence(tr("Ctrl+R"))); + ui->m_rotate_action -> setShortcut(QKeySequence(tr("SPACE"))); #ifndef Q_OS_MAC ui->m_delete_action -> setShortcut(QKeySequence(Qt::Key_Delete));