[NUI] TextField and TextEditor have Focusable set to true.
authorjoogab.yun <joogab.yun@samsung.com>
Thu, 2 Jun 2022 00:59:01 +0000 (09:59 +0900)
committerdongsug-song <35130733+dongsug-song@users.noreply.github.com>
Thu, 2 Jun 2022 09:14:59 +0000 (18:14 +0900)
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
src/Tizen.NUI/src/public/BaseComponents/TextField.cs

index 073920e..ccf0d89 100755 (executable)
@@ -89,7 +89,7 @@ namespace Tizen.NUI.BaseComponents
             {
                 SetVisible(false);
             }
-
+            Focusable = true;
             TextChanged += TextEditorTextChanged;
         }
 
index 71072b7..5359c3b 100755 (executable)
@@ -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;
         }