Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: q key not working in chat
  • Loading branch information
RobbeBryssinck committed Sep 11, 2022
commit 7f57ee3770ee0920b3507031b33019fbfe67ea82
2 changes: 1 addition & 1 deletion Code/client/Services/Generic/InputService.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ void ProcessKeyboard(uint16_t aKey, uint16_t aScanCode, cef_key_event_type_t aTy

spdlog::debug("ProcessKey, type: {}, key: {}, active: {}", aType, aKey, active);

if (IsToggleKey(aKey) || (IsDisableKey(aKey) && active))
if (aType != KEYEVENT_CHAR && (IsToggleKey(aKey) || (IsDisableKey(aKey) && active)))
{
if (!overlay.GetInGame())
{
Expand Down