diff --git a/src/game/client/components/menus.cpp b/src/game/client/components/menus.cpp index 1de35f332..a7b595a50 100644 --- a/src/game/client/components/menus.cpp +++ b/src/game/client/components/menus.cpp @@ -2613,7 +2613,7 @@ void CMenus::RenderBackground() bool CMenus::CheckHotKey(int Key) const { return m_Popup == POPUP_NONE && - !Input()->KeyIsPressed(KEY_LSHIFT) && !Input()->KeyIsPressed(KEY_RSHIFT) && !Input()->ModifierIsPressed() && !Input()->KeyIsPressed(KEY_LALT) && // no modifier + !Input()->KeyIsPressed(KEY_LSHIFT) && !Input()->KeyIsPressed(KEY_RSHIFT) && !Input()->ModifierIsPressed() && // no modifier Input()->KeyIsPressed(Key) && m_pClient->m_GameConsole.IsClosed(); }