aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Attorney_Online_remake.pro2
-rw-r--r--courtroom.cpp4
-rw-r--r--datatypes.h1
3 files changed, 5 insertions, 2 deletions
diff --git a/Attorney_Online_remake.pro b/Attorney_Online_remake.pro
index 96d3c540..82f6cda0 100644
--- a/Attorney_Online_remake.pro
+++ b/Attorney_Online_remake.pro
@@ -13,7 +13,7 @@ RC_ICONS = logo.ico
TARGET = Attorney_Online_remake
TEMPLATE = app
-VERSION = 2.2.4.0
+VERSION = 2.2.5.0
SOURCES += main.cpp\
lobby.cpp \
diff --git a/courtroom.cpp b/courtroom.cpp
index 25d71669..86dca5c1 100644
--- a/courtroom.cpp
+++ b/courtroom.cpp
@@ -1487,6 +1487,10 @@ void Courtroom::set_text_color()
ui_vp_message->setStyleSheet("background-color: rgba(0, 0, 0, 0);"
"color: yellow");
break;
+ case BLACK:
+ ui_vp_message->setStyleSheet("background-color: rgba(0, 0, 0, 0);"
+ "color: black");
+ break;
default:
qDebug() << "W: undefined text color: " << m_chatmessage[TEXT_COLOR];
case WHITE:
diff --git a/datatypes.h b/datatypes.h
index f6ce43f1..d7dcc3f1 100644
--- a/datatypes.h
+++ b/datatypes.h
@@ -103,7 +103,6 @@ enum COLOR
ORANGE,
BLUE,
YELLOW,
- //NYI
BLACK,
RAINBOW
};