From 1b7173e9270b188d5d99139df4d830ed9ac68c1d Mon Sep 17 00:00:00 2001 From: Aleix Pol Date: Tue, 8 Mar 2022 03:17:56 +0100 Subject: [PATCH] inputmethod: Do not reset when hiding This will make maliit think there is an ongoing matters and make it pop up again. --- src/inputmethod.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/inputmethod.cpp b/src/inputmethod.cpp index 9aa254c352..73e226de6b 100644 --- a/src/inputmethod.cpp +++ b/src/inputmethod.cpp @@ -126,11 +126,6 @@ void InputMethod::hide() m_inputClient->hideClient(); updateInputPanelState(); } - auto inputContext = waylandServer()->inputMethod()->context(); - if (!inputContext) { - return; - } - inputContext->sendReset(); } bool InputMethod::shouldShowOnActive() const