From 9c68765dae32bce4cd29cda6c4067a2ae0767896 Mon Sep 17 00:00:00 2001 From: ChillerDragon Date: Sat, 1 Jun 2019 17:51:22 +0200 Subject: [PATCH] Don't set Handled on ctrl-u --- src/game/client/components/console.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/game/client/components/console.cpp b/src/game/client/components/console.cpp index 9fdafa3da..71394bdc2 100644 --- a/src/game/client/components/console.cpp +++ b/src/game/client/components/console.cpp @@ -152,7 +152,6 @@ void CGameConsole::CInstance::OnInput(IInput::CEvent Event) else if(m_pGameConsole->Input()->KeyIsPressed(KEY_LCTRL) && m_pGameConsole->Input()->KeyPress(KEY_U)) { m_Input.DeleteUntilCursor(); - Handled = true; } if(Event.m_Flags&IInput::FLAG_PRESS)