From 2ca2a9595705a793c0f643c2f4fe13f1b8cf4b69 Mon Sep 17 00:00:00 2001 From: divverent Date: Tue, 7 Mar 2017 18:33:54 +0000 Subject: [PATCH] Chat: accept K_KP_ENTER to end chat entry too. git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@12323 d7cf8633-e32d-0410-b094-e92efae38249 --- keys.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keys.c b/keys.c index 79d633ba..d233471b 100644 --- a/keys.c +++ b/keys.c @@ -1198,7 +1198,7 @@ static void Key_Message (int key, int ascii) { char vabuf[1024]; - if (key == K_ENTER || ascii == 10 || ascii == 13) + if (key == K_ENTER || key == K_KP_ENTER || ascii == 10 || ascii == 13) { if(chat_mode < 0) Cmd_ExecuteString(chat_buffer, src_command, true); // not Cbuf_AddText to allow semiclons in args; however, this allows no variables then. Use aliases! -- 2.39.2