From: Seoyeon Kim Date: Wed, 6 May 2020 04:57:59 +0000 (+0900) Subject: [Non-ACR][NUI][Change the focus order of InputMethodContext] X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4d6cb85169a662f72f6bf21e35577fbe249cddcc;p=test%2Ftct%2Fcsharp%2Fapi.git [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 --- diff --git a/tct-suite-vs/Tizen.NUI.Tests/testcase/TSInputMethodContext.cs b/tct-suite-vs/Tizen.NUI.Tests/testcase/TSInputMethodContext.cs index 26699faca..766136d11 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) {