Keyboard display after Select browser to come back to foreground 41/77341/1
authorKamil Nowac <k.nowac@samsung.com>
Wed, 29 Jun 2016 10:30:58 +0000 (12:30 +0200)
committerKamil Nowac <k.nowac@samsung.com>
Wed, 29 Jun 2016 11:07:39 +0000 (13:07 +0200)
[Issue]    http://suprem.sec.samsung.net/jira/browse/TSAM-5681
[Problem]  Keyboard shows on resume
[Solution] Check visibility of find on page ui
[Verify]   As in the issue url

Change-Id: I614cf2398e8b1b126a807cd97a2fccee0726f414

services/SimpleUI/SimpleUI.cpp

index ddb3c19a129ab00b02ec9d9c7bab4b7d924af761..51dfd639ef0e810732e97a91836e3f9d5c32e09b 100644 (file)
@@ -143,7 +143,7 @@ void SimpleUI::resume()
         m_webEngineFocusWorkaroundTimer =  ecore_timer_add(0.0, web_view_set_focus_timer, this);
 
 #if PROFILE_MOBILE
-    if (m_findOnPageUI)
+    if (m_findOnPageUI && (evas_object_visible_get(m_findOnPageUI->getContent()) == EINA_TRUE))
         m_findOnPageUI->show_ime();
 #endif
 }