From 8f996a65a7868c2989172dcc79ed871ee0d00932 Mon Sep 17 00:00:00 2001 From: InHong Han Date: Thu, 10 Mar 2022 13:52:17 +0900 Subject: [PATCH] Fix issue that afterimage of the candidate window remained Change-Id: I341a317211a9e7bfaa1a4ad97c7731a530ddd329 --- ism/src/isf_info_manager.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/ism/src/isf_info_manager.cpp b/ism/src/isf_info_manager.cpp index 5d5fe86..cc40800 100644 --- a/ism/src/isf_info_manager.cpp +++ b/ism/src/isf_info_manager.cpp @@ -3302,10 +3302,11 @@ client context helpers: %zu, helpers uuid count: %zu", if (m_ise_context_buffer != NULL && m_ise_context_length > 0) { Ise_Context *iseContext = reinterpret_cast(m_ise_context_buffer); - if (iseContext->layout != ECORE_IMF_INPUT_PANEL_LAYOUT_PASSWORD && !(iseContext->input_hint & ECORE_IMF_INPUT_HINT_SENSITIVE_DATA)) { - m_signal_show_lookup_table (); - } + if (iseContext->layout == ECORE_IMF_INPUT_PANEL_LAYOUT_PASSWORD || iseContext->input_hint & ECORE_IMF_INPUT_HINT_SENSITIVE_DATA) + return; } + + m_signal_show_lookup_table (); } //ISM_TRANS_CMD_SHOW_ASSOCIATE_TABLE void socket_show_associate_table (void) { -- 2.7.4