From ce2541af1e456b4c092ce2632f2e0a20ad04aa33 Mon Sep 17 00:00:00 2001 From: Zach Date: Mon, 9 Feb 2015 15:52:04 -0500 Subject: [PATCH] Allow for shortcuts on hand viewing Based on feedback, allow for shortcut for specs to view hands --- cockatrice/src/dlg_creategame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cockatrice/src/dlg_creategame.cpp b/cockatrice/src/dlg_creategame.cpp index b4680f7c9..72b26ee94 100644 --- a/cockatrice/src/dlg_creategame.cpp +++ b/cockatrice/src/dlg_creategame.cpp @@ -77,7 +77,7 @@ void DlgCreateGame::sharedCtor() connect(spectatorsAllowedCheckBox, SIGNAL(stateChanged(int)), this, SLOT(spectatorsAllowedChanged(int))); spectatorsNeedPasswordCheckBox = new QCheckBox(tr("Spectators &need a password to watch")); spectatorsCanTalkCheckBox = new QCheckBox(tr("Spectators can &chat")); - spectatorsSeeEverythingCheckBox = new QCheckBox(tr("Spectators can see hands")); + spectatorsSeeEverythingCheckBox = new QCheckBox(tr("Spectators can see &hands")); QVBoxLayout *spectatorsLayout = new QVBoxLayout; spectatorsLayout->addWidget(spectatorsAllowedCheckBox); spectatorsLayout->addWidget(spectatorsNeedPasswordCheckBox);