Merge pull request #63 from mattkelly/tab-changephase
Add Tab shortcut for next phase
This commit is contained in:
commit
02c2b29701
1 changed files with 1 additions and 1 deletions
|
@ -532,7 +532,7 @@ void TabGame::retranslateUi()
|
||||||
gameMenu->setTitle(tr("&Game"));
|
gameMenu->setTitle(tr("&Game"));
|
||||||
if (aNextPhase) {
|
if (aNextPhase) {
|
||||||
aNextPhase->setText(tr("Next &phase"));
|
aNextPhase->setText(tr("Next &phase"));
|
||||||
aNextPhase->setShortcut(tr("Ctrl+Space"));
|
aNextPhase->setShortcuts(QList<QKeySequence>() << QKeySequence(tr("Ctrl+Space")) << QKeySequence(tr("Tab")));
|
||||||
}
|
}
|
||||||
if (aNextTurn) {
|
if (aNextTurn) {
|
||||||
aNextTurn->setText(tr("Next &turn"));
|
aNextTurn->setText(tr("Next &turn"));
|
||||||
|
|
Loading…
Reference in a new issue