From d6ebc3e80b9abc29fef70f6ef18434ea877f4b66 Mon Sep 17 00:00:00 2001 From: Crystalwarrior Date: Sun, 21 Feb 2021 11:38:04 +0300 Subject: [PATCH] Fix chat arrow being frozen on frame 1 --- src/courtroom.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/courtroom.cpp b/src/courtroom.cpp index 014bd7b..22491f2 100644 --- a/src/courtroom.cpp +++ b/src/courtroom.cpp @@ -1256,7 +1256,7 @@ void Courtroom::set_background(QString p_background, bool display) ui_vp_message->hide(); ui_vp_chatbox->hide(); // Stop the chat arrow from animating - ui_vp_chat_arrow->stop(); + ui_vp_chat_arrow->hide(); // Clear the message queue text_queue_timer->stop(); @@ -2014,7 +2014,7 @@ void Courtroom::unpack_chatmessage(QStringList p_contents) handle_callwords(); // Reset the interface to make room for objection handling - ui_vp_chat_arrow->stop(); + ui_vp_chat_arrow->hide(); text_state = 0; anim_state = 0; evidence_presented = false;