From 4d6cb85169a662f72f6bf21e35577fbe249cddcc Mon Sep 17 00:00:00 2001 From: Seoyeon Kim Date: Wed, 6 May 2020 13:57:59 +0900 Subject: [PATCH] [Non-ACR][NUI][Change the focus order of InputMethodContext] - To set the focus on View should be done after getting InputMethodContext Change-Id: I935a67da6f49d460c5d7b4a48d68c95405b75c8f Signed-off-by: Seoyeon Kim --- tct-suite-vs/Tizen.NUI.Tests/testcase/TSInputMethodContext.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tct-suite-vs/Tizen.NUI.Tests/testcase/TSInputMethodContext.cs b/tct-suite-vs/Tizen.NUI.Tests/testcase/TSInputMethodContext.cs index 26699fa..766136d 100755 --- a/tct-suite-vs/Tizen.NUI.Tests/testcase/TSInputMethodContext.cs +++ b/tct-suite-vs/Tizen.NUI.Tests/testcase/TSInputMethodContext.cs @@ -634,8 +634,8 @@ namespace Tizen.NUI.Tests Focusable = true, }; NUIApplication.GetDefaultWindow().GetDefaultLayer().Add(editor); - FocusManager.Instance.SetCurrentFocusView(editor); var inputMethodContext = editor.GetInputMethodContext(); + FocusManager.Instance.SetCurrentFocusView(editor); await Task.Delay(500); if (inputMethodContext) { @@ -680,8 +680,8 @@ namespace Tizen.NUI.Tests Focusable = true, }; NUIApplication.GetDefaultWindow().GetDefaultLayer().Add(editor); - FocusManager.Instance.SetCurrentFocusView(editor); var inputMethodContext = editor.GetInputMethodContext(); + FocusManager.Instance.SetCurrentFocusView(editor); await Task.Delay(500); if (inputMethodContext) { @@ -725,8 +725,8 @@ namespace Tizen.NUI.Tests Focusable = true, }; NUIApplication.GetDefaultWindow().GetDefaultLayer().Add(editor); - FocusManager.Instance.SetCurrentFocusView(editor); var inputMethodContext = editor.GetInputMethodContext(); + FocusManager.Instance.SetCurrentFocusView(editor); await Task.Delay(500); if (inputMethodContext) { -- 2.7.4