Changed shortcuts of workbenches to W + number

This commit is contained in:
Yorik van Havre 2016-01-07 11:47:53 -02:00
parent 0b3f60a68c
commit 7886675faa

View File

@ -536,7 +536,7 @@ void WorkbenchGroup::setWorkbenchData(int i, const QString& wb)
workbenches[i]->setStatusTip(tr("Select the '%1' workbench").arg(name));
workbenches[i]->setVisible(true);
if (i < 10)
workbenches[i]->setShortcut(QKeySequence(QString::fromUtf8("Ctrl+Alt+%1").arg(i)));
workbenches[i]->setShortcut(QKeySequence(QString::fromUtf8("W,%1").arg(i)));
}
void WorkbenchGroup::refreshWorkbenchList()