Extra key to get to start window

This commit is contained in:
Sebastian Lohff 2013-11-22 02:28:12 +01:00
parent ca8f014161
commit 8ea44f22ea
1 changed files with 5 additions and 0 deletions

View File

@ -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