longer player buttons to support startcash max 1000000$ - new allin button

This commit is contained in:
doitux
2009-03-27 22:15:00 +00:00
parent dd16cdee48
commit 2546caf18e
25 changed files with 34 additions and 34 deletions
+6 -1
View File
@@ -35,5 +35,10 @@ void MyActionButton::paintEvent(QPaintEvent * event) {
QFont f= painter.font();
f.setPixelSize(9);
painter.setFont(f);
painter.drawText(8,11,15,15,Qt::AlignLeft,fKeyText);
if(objectName()==("pushButton_AllIn")) {
painter.drawText(6,6,15,15,Qt::AlignLeft,fKeyText);
}
else {
painter.drawText(8,11,15,15,Qt::AlignLeft,fKeyText);
}
}