Remove the default alpha value for drag image
authorsh919.park <sh919.park@samsung.com>
Thu, 22 Aug 2013 07:38:01 +0000 (16:38 +0900)
committersh919.park <sh919.park@samsung.com>
Thu, 22 Aug 2013 07:45:46 +0000 (16:45 +0900)
[Title] Remove the default alpha value for drag image.
[Issue#] P130822-02205
[Problem] The drag image is disappeared, if repeat to click the drag about same drag target.
[Solution] remove the default alpha value for drag image.

Change-Id: I8dbfe4caaa5773820eeadf2685de0659da493687

Source/WebCore/page/efl/DragControllerEfl.cpp

index f5c0ecc..cabb3e6 100644 (file)
@@ -41,7 +41,11 @@ const int DragController::MaxOriginalImageArea = 1500 * 1500;
 const int DragController::DragIconRightInset = 7;
 const int DragController::DragIconBottomInset = 3;
 
+#if ENABLE(TIZEN_DRAG_SUPPORT)
+const float DragController::DragImageAlpha = 1.0f;
+#else
 const float DragController::DragImageAlpha = 0.75f;
+#endif
 
 bool DragController::isCopyKeyDown(DragData*)
 {