[Title] Changed signal for showing text selection handles.
[Issue#] N_SE-29804
[Problem] Context menu options does disappear after clipboard appear
[Cause] There is appear the context menu routine after clipboard appear
[Solution] Checking clipboard status before appear context menu
Change-Id: I8204b0fb2a48272583b20e6f837917cdfdb7d4c5
#endif
}
-#if ENABLE(TIZEN_WEBKIT2_TEXT_SELECTION)
- updateTextSelectionHandlesAndContextMenu(true);
-#endif
-
#if ENABLE(TIZEN_WEBKIT2_FORM_DATABASE)
Ewk_View_Smart_Data* smartData = static_cast<Ewk_View_Smart_Data*>(evas_object_smart_data_get(m_viewWidget));
if (smartData->api->formdata_candidate_is_showing(smartData))
#endif
#if ENABLE(TIZEN_WEBKIT2_TEXT_SELECTION)
- updateTextSelectionHandlesAndContextMenu(true);
+ if (!isClipboardWindowOpened())
+ updateTextSelectionHandlesAndContextMenu(true);
#endif
}