diff --git a/cockatrice/src/gameview.cpp b/cockatrice/src/gameview.cpp index 7aaa4431..c81d7f9f 100644 --- a/cockatrice/src/gameview.cpp +++ b/cockatrice/src/gameview.cpp @@ -7,6 +7,7 @@ GameView::GameView(QGraphicsScene *scene, QWidget *parent) setRenderHints(QPainter::TextAntialiasing | QPainter::Antialiasing/* | QPainter::SmoothPixmapTransform*/); setDragMode(RubberBandDrag); setViewportUpdateMode(BoundingRectViewportUpdate); + setFocusPolicy(Qt::NoFocus); connect(scene, SIGNAL(sceneRectChanged(const QRectF &)), this, SLOT(updateSceneRect(const QRectF &))); } diff --git a/cockatrice/src/tab_game.cpp b/cockatrice/src/tab_game.cpp index c671254a..ae8ada7a 100644 --- a/cockatrice/src/tab_game.cpp +++ b/cockatrice/src/tab_game.cpp @@ -129,7 +129,7 @@ void TabGame::retranslateUi() loadLocalButton->setText(tr("Load &local deck")); loadRemoteButton->setText(tr("Load d&eck from server")); - readyStartButton->setText(tr("&Start game")); + readyStartButton->setText(tr("S&tart game")); sayLabel->setText(tr("&Say:")); cardInfo->retranslateUi(); zoneLayout->retranslateUi();