version 2.2.5 in the .pro file

This commit is contained in:
OmniTroid 2017-03-13 23:34:24 +01:00
parent 8acaf365b1
commit 47baf6ef1c
3 changed files with 5 additions and 2 deletions

View File

@ -13,7 +13,7 @@ RC_ICONS = logo.ico
TARGET = Attorney_Online_remake TARGET = Attorney_Online_remake
TEMPLATE = app TEMPLATE = app
VERSION = 2.2.4.0 VERSION = 2.2.5.0
SOURCES += main.cpp\ SOURCES += main.cpp\
lobby.cpp \ lobby.cpp \

View File

@ -1487,6 +1487,10 @@ void Courtroom::set_text_color()
ui_vp_message->setStyleSheet("background-color: rgba(0, 0, 0, 0);" ui_vp_message->setStyleSheet("background-color: rgba(0, 0, 0, 0);"
"color: yellow"); "color: yellow");
break; break;
case BLACK:
ui_vp_message->setStyleSheet("background-color: rgba(0, 0, 0, 0);"
"color: black");
break;
default: default:
qDebug() << "W: undefined text color: " << m_chatmessage[TEXT_COLOR]; qDebug() << "W: undefined text color: " << m_chatmessage[TEXT_COLOR];
case WHITE: case WHITE:

View File

@ -103,7 +103,6 @@ enum COLOR
ORANGE, ORANGE,
BLUE, BLUE,
YELLOW, YELLOW,
//NYI
BLACK, BLACK,
RAINBOW RAINBOW
}; };