The colour purple has been changed to cyan.

This commit is contained in:
Cerapter 2018-07-28 18:54:29 +02:00
parent cfc2d74d30
commit c5ef5b0e69
2 changed files with 4 additions and 4 deletions

View File

@ -188,7 +188,7 @@ Courtroom::Courtroom(AOApplication *p_ao_app) : QMainWindow()
ui_text_color->addItem("Yellow"); ui_text_color->addItem("Yellow");
ui_text_color->addItem("Rainbow"); ui_text_color->addItem("Rainbow");
ui_text_color->addItem("Pink"); ui_text_color->addItem("Pink");
ui_text_color->addItem("Purple"); ui_text_color->addItem("Cyan");
ui_music_slider = new QSlider(Qt::Horizontal, this); ui_music_slider = new QSlider(Qt::Horizontal, this);
ui_music_slider->setRange(0, 100); ui_music_slider->setRange(0, 100);
@ -1871,9 +1871,9 @@ 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: pink"); "color: pink");
break; break;
case PURPLE: case CYAN:
ui_vp_message->setStyleSheet("background-color: rgba(0, 0, 0, 0);" ui_vp_message->setStyleSheet("background-color: rgba(0, 0, 0, 0);"
"color: purple"); "color: cyan");
break; break;
default: default:
qDebug() << "W: undefined text color: " << m_chatmessage[TEXT_COLOR]; qDebug() << "W: undefined text color: " << m_chatmessage[TEXT_COLOR];

View File

@ -106,7 +106,7 @@ enum COLOR
YELLOW, YELLOW,
RAINBOW, RAINBOW,
PINK, PINK,
PURPLE CYAN
}; };
#endif // DATATYPES_H #endif // DATATYPES_H