From c4492129603f245d18f5f026bb4f022442915f51 Mon Sep 17 00:00:00 2001 From: "joogab.yun" Date: Thu, 2 Jun 2022 09:59:01 +0900 Subject: [PATCH] [NUI] TextField and TextEditor have Focusable set to true. If Focusable is true, it can receive focus when moved by the keyboard This is a fix patch to put back in because Focusable=true was removed in another patch. --- src/Tizen.NUI/src/public/BaseComponents/TextEditor.cs | 2 +- src/Tizen.NUI/src/public/BaseComponents/TextField.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Tizen.NUI/src/public/BaseComponents/TextEditor.cs b/src/Tizen.NUI/src/public/BaseComponents/TextEditor.cs index 073920e..ccf0d89 100755 --- a/src/Tizen.NUI/src/public/BaseComponents/TextEditor.cs +++ b/src/Tizen.NUI/src/public/BaseComponents/TextEditor.cs @@ -89,7 +89,7 @@ namespace Tizen.NUI.BaseComponents { SetVisible(false); } - + Focusable = true; TextChanged += TextEditorTextChanged; } diff --git a/src/Tizen.NUI/src/public/BaseComponents/TextField.cs b/src/Tizen.NUI/src/public/BaseComponents/TextField.cs index 71072b7..5359c3b 100755 --- a/src/Tizen.NUI/src/public/BaseComponents/TextField.cs +++ b/src/Tizen.NUI/src/public/BaseComponents/TextField.cs @@ -78,7 +78,7 @@ namespace Tizen.NUI.BaseComponents { SetVisible(false); } - + Focusable = true; TextChanged += TextFieldTextChanged; } @@ -88,7 +88,7 @@ namespace Tizen.NUI.BaseComponents { SetVisible(false); } - + Focusable = true; TextChanged += TextFieldTextChanged; } -- 2.7.4