diff --git a/docs/shortcuts.rst b/docs/shortcuts.rst index 0f88bd63..085b9744 100644 --- a/docs/shortcuts.rst +++ b/docs/shortcuts.rst @@ -68,7 +68,7 @@ Keyboard +----------------------+--------------------------------------------------------------------------+ | W | Toggle Part Wrap Status: (W)rap using Convex hull/Normal | +----------------------+--------------------------------------------------------------------------+ -| TAB | Swith the Selected Nodes to Different Profile (Main / Side) | +| E | Swith the Selected Nodes to Different Profile (Main / Side) | +----------------------+--------------------------------------------------------------------------+ Mouse diff --git a/src/skeletongraphicswidget.cpp b/src/skeletongraphicswidget.cpp index 5293a2e4..b3ecbc68 100644 --- a/src/skeletongraphicswidget.cpp +++ b/src/skeletongraphicswidget.cpp @@ -1516,7 +1516,7 @@ bool SkeletonGraphicsWidget::keyPress(QKeyEvent *event) emit groupOperationAdded(); return true; } - } else if (event->key() == Qt::Key_Tab) { + } else if (event->key() == Qt::Key_E) { if (SkeletonDocumentEditMode::Select == m_document->editMode && hasSelection()) { switchProfileOnRangeSelection(); return true;