Page is auto zoomed on tapping URL bar.
authorKarol Furmaniak <k.furmaniak@samsung.com>
Thu, 26 Feb 2015 14:11:46 +0000 (15:11 +0100)
committerYoungsoo Choi <kenshin.choi@samsung.com>
Tue, 10 Jul 2018 06:57:09 +0000 (06:57 +0000)
[Problem]: When input field is focused and tap UTL bar
page is zoomed in.

[Solution]: Changed checking virtual keyboard state
from IsIMFVisible to IsShow which additionaly checked
if ime is in focused state,

Bug: http://168.219.209.56/jira/browse/TNEF-164
Reviewed by: Antonio Gomes, Marcin Kolibabka, Piotr Grad

Change-Id: I1bc8a3bd0e0fc32c8151c0536a18c6cdf118b20e
Signed-off-by: Karol Furmaniak <k.furmaniak@samsung.com>
tizen_src/impl/browser/renderer_host/render_widget_host_view_efl.cc

index 95ff7ec..a24a792 100644 (file)
@@ -1104,7 +1104,7 @@ void RenderWidgetHostViewEfl::HandleResize(int width, int height) {
   UpdateScreenInfo(GetNativeView());
   host_->WasResized();
 
-  if (im_context_ && im_context_->IsImePanelVisible())
+  if (im_context_ && im_context_->IsShow())
     ScrollFocusedEditableNode();
 }