From a9aded7fd8c9afe95b02ca0bf932872096cc8b74 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Sun, 28 Aug 2022 17:28:53 +0200 Subject: [PATCH] CConsole: Fixed problem where window claims focus over all other windows when summary is painted --- r5dev/gameui/IConsole.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/r5dev/gameui/IConsole.cpp b/r5dev/gameui/IConsole.cpp index c81eff08..77895be4 100644 --- a/r5dev/gameui/IConsole.cpp +++ b/r5dev/gameui/IConsole.cpp @@ -419,7 +419,11 @@ bool CConsole::AutoComplete(void) // Don't suggest if user tries to assign value to ConVar or execute ConCommand. if (strstr(m_szInputBuf, " ") || strstr(m_szInputBuf, ";")) { - ResetAutoComplete(); + // !TODO: Add completion logic here. + m_bCanAutoComplete = false; + m_bSuggestActive = false; + m_nSuggestPos = -1; + return false; } m_bSuggestActive = true;