From: Yuni Jeong Date: Tue, 20 Aug 2013 08:45:15 +0000 (+0900) Subject: Fixed copy & paste context menu disappear quickly. X-Git-Tag: 2.2.1_release~290 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=aa274b06a06727dd62b224f6b180421e6495bd77;p=framework%2Fweb%2Fwebkit-efl.git Fixed copy & paste context menu disappear quickly. [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 --- diff --git a/Source/WebKit2/UIProcess/tizen/WebContextMenuProxyTizen.cpp b/Source/WebKit2/UIProcess/tizen/WebContextMenuProxyTizen.cpp index e073b6d..6011178 100755 --- a/Source/WebKit2/UIProcess/tizen/WebContextMenuProxyTizen.cpp +++ b/Source/WebKit2/UIProcess/tizen/WebContextMenuProxyTizen.cpp @@ -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);