aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOmniTroid <davidskoland@gmail.com>2017-03-13 23:34:24 +0100
committerOmniTroid <davidskoland@gmail.com>2017-03-13 23:34:24 +0100
commit47baf6ef1c88795583b3d20de9086026d7556bfc (patch)
treeb63a0eb35854c8874c64ba6c28d25ac37f654a91
parent8acaf365b16ad7f261b28cf7ce2e66178a3d2820 (diff)
version 2.2.5 in the .pro file
-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
};