From 568d3adb8b91fbf6383a739ac5de5767ffa0bb2d Mon Sep 17 00:00:00 2001 From: "bhargavi.k" Date: Wed, 2 Oct 2013 17:30:37 +0530 Subject: [PATCH] Fix for "Marker blinking while press and hold Ctrl+A" [Title] Fix for "Marker blinking while press and hold Ctrl+A" [Issue#] NSE-52739 [Problem] Blink was happening [Cause] Due to context menu disable , text selection was removed [Solution] made changes like Thou context menu is disable, Text selection should be active. Change-Id: I57517db7ef1a6ff5b143bf141db632b5142ffe21 --- Source/WebKit2/UIProcess/tizen/WebContextMenuProxyTizen.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Source/WebKit2/UIProcess/tizen/WebContextMenuProxyTizen.cpp b/Source/WebKit2/UIProcess/tizen/WebContextMenuProxyTizen.cpp index 6e27005..c61db8d 100755 --- a/Source/WebKit2/UIProcess/tizen/WebContextMenuProxyTizen.cpp +++ b/Source/WebKit2/UIProcess/tizen/WebContextMenuProxyTizen.cpp @@ -218,13 +218,8 @@ void WebContextMenuProxyTizen::showContextMenu(const WebCore::IntPoint& position #endif #if ENABLE(TIZEN_CONTEXT_MENU_WEBKIT_2) - if (items.isEmpty()) { -#if ENABLE(TIZEN_WEBKIT2_TEXT_SELECTION) - if (m_pageClientImpl->isTextSelectionMode()) - m_pageClientImpl->setIsTextSelectionMode(false); -#endif + if (items.isEmpty()) return; - } createEflMenu(items); -- 2.7.4