[Tizen] TOUCH_FOCUSABLE's default is false so this also should not be set 08/303808/1 accepted/tizen/7.0/unified/20240105.145206
authordongsug.song <dongsug.song@samsung.com>
Fri, 5 Jan 2024 06:26:41 +0000 (15:26 +0900)
committerdongsug.song <dongsug.song@samsung.com>
Fri, 5 Jan 2024 06:26:59 +0000 (15:26 +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 c7e8748..0269e58 100755 (executable)
@@ -214,7 +214,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);