Skip to content

Commit d6ebc3e

Browse files
Fix chat arrow being frozen on frame 1
1 parent 0ee6888 commit d6ebc3e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/courtroom.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1256,7 +1256,7 @@ void Courtroom::set_background(QString p_background, bool display)
12561256
ui_vp_message->hide();
12571257
ui_vp_chatbox->hide();
12581258
// Stop the chat arrow from animating
1259-
ui_vp_chat_arrow->stop();
1259+
ui_vp_chat_arrow->hide();
12601260

12611261
// Clear the message queue
12621262
text_queue_timer->stop();
@@ -2014,7 +2014,7 @@ void Courtroom::unpack_chatmessage(QStringList p_contents)
20142014
handle_callwords();
20152015

20162016
// Reset the interface to make room for objection handling
2017-
ui_vp_chat_arrow->stop();
2017+
ui_vp_chat_arrow->hide();
20182018
text_state = 0;
20192019
anim_state = 0;
20202020
evidence_presented = false;

0 commit comments

Comments
 (0)