Display the first character of the ic message right away instead of having a delay

This commit is contained in:
Crystalwarrior 2019-09-27 15:12:09 +03:00
parent a3d1d5bf9d
commit 1a3d3281a7

View File

@ -2496,7 +2496,7 @@ void Courtroom::start_chat_ticking()
// At the start of every new message, we set the text speed to the default. // At the start of every new message, we set the text speed to the default.
current_display_speed = 3; current_display_speed = 3;
chat_tick_timer->start(message_display_speed[current_display_speed]); chat_tick_timer->start(0); //Display the first char right away
QString f_gender = ao_app->get_gender(m_chatmessage[CHAR_NAME]); QString f_gender = ao_app->get_gender(m_chatmessage[CHAR_NAME]);