From: dongsug.song Date: Fri, 5 Jan 2024 06:26:41 +0000 (+0900) Subject: [Tizen] TOUCH_FOCUSABLE's default is false so this also should not be set X-Git-Tag: accepted/tizen/7.0/unified/20240105.145206^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F08%2F303808%2F1;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git [Tizen] TOUCH_FOCUSABLE's default is false so this also should not be set 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 --- diff --git a/dali-toolkit/internal/controls/web-view/web-view-impl.cpp b/dali-toolkit/internal/controls/web-view/web-view-impl.cpp index c7e8748321..0269e581e6 100755 --- a/dali-toolkit/internal/controls/web-view/web-view-impl.cpp +++ b/dali-toolkit/internal/controls/web-view/web-view-impl.cpp @@ -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);