[Tizen] Disable hover and wheel code until chromium support it
authorJoogab Yun <joogab.yun@samsung.com>
Tue, 20 Apr 2021 01:38:10 +0000 (10:38 +0900)
committerJoogab Yun <joogab.yun@samsung.com>
Tue, 20 Apr 2021 01:38:10 +0000 (10:38 +0900)
This reverts commit 5be52190310147ceedf7b249b416bdf5b75439b0.

Change-Id: I4e72e2e7b41e685b7c074ae9c941385405f587c9

dali-extension/web-engine-chromium/tizen-web-engine-chromium.cpp

index e568a3d..e067e00 100755 (executable)
@@ -754,7 +754,7 @@ public:
 
   bool SendHoverEvent(const HoverEvent& hover)
   {
-#if defined(OS_TIZEN_TV)
+#if 0
     //TODO...left/right/middle of mouse could not be acquired now.
     Ewk_Mouse_Button_Type type = EWK_Mouse_Button_Left;
     switch ( hover.GetState( 0 ) )
@@ -791,7 +791,7 @@ public:
 
   bool SendWheelEvent(const WheelEvent& wheel)
   {
-#if defined(OS_TIZEN_TV)
+#if 0
     Eina_Bool direction = wheel.GetDirection() ? true : false;
     int step = wheel.GetDelta();
     float x = wheel.GetPoint().x;