diff --git a/game.py b/game.py index b3bb3be..37fdc34 100644 --- a/game.py +++ b/game.py @@ -88,6 +88,11 @@ class SeopardyGame(QtGui.QWidget): def keyPressEvent(self, e): if e.key() == QtCore.Qt.Key_Escape: self.close() + elif e.key() == QtCore.Qt.Key_R: + x = PlayerStartWindow(self.players, self) + self._inOtherWindow = True + x.exec_() + self._inOtherWindow = False elif e.key() == QtCore.Qt.Key_E: if self._inOtherWindow: return