diff options
| author | Crystalwarrior <varsash@gmail.com> | 2019-09-27 15:12:09 +0300 |
|---|---|---|
| committer | Crystalwarrior <varsash@gmail.com> | 2019-09-27 15:12:09 +0300 |
| commit | 1a3d3281a79856a19339292a281e5480f4825756 (patch) | |
| tree | 1027a6f9d47e0f0037b8f015b2762f4c069e3d84 | |
| parent | a3d1d5bf9d195969cf9a1cd55b59316dd262ab0b (diff) | |
Display the first character of the ic message right away instead of having a delay
| -rw-r--r-- | src/courtroom.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/courtroom.cpp b/src/courtroom.cpp index 327f4de6..5ffef459 100644 --- a/src/courtroom.cpp +++ b/src/courtroom.cpp @@ -2496,7 +2496,7 @@ void Courtroom::start_chat_ticking() // At the start of every new message, we set the text speed to the default. 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]); |
