[Tizen] TOUCH_FOCUSABLE's default is false so this also should not be set 14/315314/1
authordongsug.song <dongsug.song@samsung.com>
Fri, 5 Jan 2024 06:26:41 +0000 (15:26 +0900)
committerdongsug.song <dongsug.song@samsung.com>
Tue, 30 Jul 2024 05:58:43 +0000 (14:58 +0900)
This true setting causes abnormal behavior on FHUB WebView.
User didn't set the touch focus indicator but the blue focus indicator shows when the WebView is touched,
even though other view doesn't show focus indicator.

Change-Id: I275e15abfb7df24da0d6dbe3ee0d047e326905d7

dali-toolkit/internal/controls/web-view/web-view-impl.cpp

index e8dcbf3..9f9d1fd 100644 (file)
@@ -279,7 +279,6 @@ void WebView::OnInitialize()
   Actor self = Self();
 
   self.SetProperty(Actor::Property::KEYBOARD_FOCUSABLE, true);
-  self.SetProperty(DevelActor::Property::TOUCH_FOCUSABLE, true);
   self.TouchedSignal().Connect(this, &WebView::OnTouchEvent);
   self.HoveredSignal().Connect(this, &WebView::OnHoverEvent);
   self.WheelEventSignal().Connect(this, &WebView::OnWheelEvent);