Commit 23567882 authored by poixen's avatar poixen
Browse files

Merge pull request #929 from poixen/reveal_top_card_shortcut

Added shortcut to reveal top card or lib
parents 88da9ec8 fbbeb124
......@@ -720,6 +720,7 @@ void Player::setShortcutsActive()
aRollDie->setShortcut(tr("Ctrl+I"));
aCreateToken->setShortcut(tr("Ctrl+T"));
aCreateAnotherToken->setShortcut(tr("Ctrl+G"));
aAlwaysRevealTopCard->setShortcut(tr("Ctrl+N"));
QMapIterator<int, AbstractCounter *> counterIterator(counters);
while (counterIterator.hasNext())
......@@ -743,6 +744,7 @@ void Player::setShortcutsInactive()
aRollDie->setShortcut(QKeySequence());
aCreateToken->setShortcut(QKeySequence());
aCreateAnotherToken->setShortcut(QKeySequence());
aAlwaysRevealTopCard->setShortcut(QKeySequence());
QMapIterator<int, AbstractCounter *> counterIterator(counters);
while (counterIterator.hasNext())
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment