[Tizen] Reset to "Prevent keypad enter key inserting when textfield is in password... 01/319001/1
authorEunki Hong <eunkiki.hong@samsung.com>
Sat, 12 Oct 2024 01:24:01 +0000 (10:24 +0900)
committerEunki Hong <eunkiki.hong@samsung.com>
Sat, 12 Oct 2024 01:26:42 +0000 (10:26 +0900)
This reverts commit 3f529f2ceecea5f2f4be49d1c72e4accb537032a.

Change-Id: I972edacfe45741da4607a3e83225fab48d35fb06

dali-toolkit/public-api/controls/control-impl.cpp

index 177c43f53db4a2ecce29cf3cc6efb76d23b35961..068fb03503bebc0411924c53283aa0f0ca152c56 100644 (file)
@@ -615,6 +615,15 @@ void Control::OnPropertySet(Property::Index index, const Property::Value& proper
       }
       break;
     }
+    case Actor::Property::VISIBLE:
+    {
+      auto accessible = GetAccessibleObject();
+      if(DALI_LIKELY(accessible) && accessible->IsHighlighted())
+      {
+        accessible->EmitVisible(Self().GetProperty<bool>(Actor::Property::VISIBLE));
+      }
+      break;
+    }
     case DevelActor::Property::USER_INTERACTION_ENABLED:
     {
       const bool enabled = propertyValue.Get<bool>();