Gave nobody a defined color

master
Sebastian Lohff 11 years ago
parent cedca2e8c9
commit 7ad21c516b

@ -2,7 +2,7 @@ from __future__ import print_function
from PySide import QtCore, QtGui
from player import Player
from player import Player, nobodyColor
from windows import QuestionWindow, EditAnswersWindow, PlayerStartWindow, VictoryWindow
from gamestate import QuestionAnswers
@ -200,7 +200,7 @@ class SeopardyGame(QtGui.QWidget):
if not answers.got_answered():
btnstr += "+nobody"
btncolor = QtGui.QColor(128, 128, 128)
btncolor = nobodyColor
btn.setStyleSheet("QPushButton { background-color: %s; color: white; font-size: 20px; border: none; }" % (btncolor.name(),))
btn.setText(btnstr.strip())

@ -60,3 +60,5 @@ class ButtonEvent(QtCore.QEvent):
def get_playerno(self):
return self.playerno
nobodyColor = QtGui.QColor(128, 128, 128)

Loading…
Cancel
Save