Fixed copy & paste context menu disappear quickly.
authorYuni Jeong <yhnet.jung@samsung.com>
Tue, 20 Aug 2013 08:45:15 +0000 (17:45 +0900)
committerTaeyun An <ty.an@samsung.com>
Wed, 21 Aug 2013 09:11:29 +0000 (18:11 +0900)
[Title] Fixed copy & paste context menu disappear quickly.
[Issue#] P130813-04751
[Problem] Copy & paste context menu disappear quickly after showing copy & paste context menu.
[Cause] Disappeared after 3 seconds automatically.
[Solution] Changed disappearing time.
           So, Copy & paste context menu will disappear after 6 seconds.

Change-Id: I4d72c4e8f6e12b551f5c0dde8bb6e5ed21dd0789

Source/WebKit2/UIProcess/tizen/WebContextMenuProxyTizen.cpp

index e073b6d..6011178 100755 (executable)
@@ -228,7 +228,7 @@ Eina_Bool WebContextMenuProxyTizen::contextMenuTimerCallback(void* data)
 
 void WebContextMenuProxyTizen::startContextMenuTimer()
 {
-    double contextMenuDispTime = 3.0;
+    double contextMenuDispTime = 6.0;
     endContextMenuTimer();
 
     m_contextShowTimer = ecore_timer_add(contextMenuDispTime, contextMenuTimerCallback, this);