Skip to content

Commit

Permalink
Merge pull request #109 from MafiaHub/bug/reset-chat-history-position
Browse files Browse the repository at this point in the history
Reset chat history position
  • Loading branch information
Segfaultd authored Jan 12, 2025
2 parents 53dd57b + b2ac14a commit 34b9bf2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion code/client/src/core/ui/chat.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ namespace MafiaMP::Core::UI {
strcpy(_inputText, "");
}

_isFocused = false;
_historyPos = -1;
_isFocused = false;
LockControls(false);
}
}
Expand Down

0 comments on commit 34b9bf2

Please sign in to comment.