Different backgrounds per player (#3990)

This commit is contained in:
fdipilla 2020-05-14 21:31:12 -03:00 committed by GitHub
parent 04274d2497
commit fd0620445c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 14 additions and 1 deletions

View file

@ -107,3 +107,8 @@ void ThemeManager::themeChangedSlot()
emit themeChanged();
}
QBrush ThemeManager::getExtraTableBgBrush(QString extraNumber)
{
return loadBrush(TABLEZONE_BG_NAME + extraNumber, QColor(70, 50, 100));
}