aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoroldmud0 <oldmud0@users.noreply.github.com>2021-03-30 21:49:21 -0500
committerGitHub <noreply@github.com>2021-03-30 21:49:21 -0500
commit8dd7b4fa3c03d51469234a171aaf42e75a5a07ad (patch)
tree36bfcd299eac24030276b7af88720b8eadeb5e3c
parentb7f97604ffa6eb680f136c2b5a62cd6becd393c7 (diff)
parent1d83fae23dace8fb1b7d79dc6cbf715f687d0f4e (diff)
Merge pull request #513 from AttorneyOnline/fix/chat-arrow-display
Fix chat arrow being displayed even when blankposting
-rw-r--r--src/courtroom.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/courtroom.cpp b/src/courtroom.cpp
index e5063954..5eafe60a 100644
--- a/src/courtroom.cpp
+++ b/src/courtroom.cpp
@@ -1990,15 +1990,6 @@ void Courtroom::chatmessage_enqueue(QStringList p_contents)
void Courtroom::chatmessage_dequeue()
{
- // Chat stopped being processed, indicate that the user can post their message now.
- QString f_custom_theme;
- if (ao_app->is_customchat_enabled()) {
- QString f_char = m_chatmessage[CHAR_NAME];
- f_custom_theme = ao_app->get_chat(f_char);
- }
- ui_vp_chat_arrow->transform_mode = ao_app->get_misc_scaling(f_custom_theme);
- ui_vp_chat_arrow->load_image("chat_arrow", f_custom_theme);
-
// Nothing to parse in the queue
if (chatmessage_queue.isEmpty())
return;