From 094991d83189dbd61924c5aad1844009da30aae2 Mon Sep 17 00:00:00 2001 From: Karol Furmaniak Date: Thu, 26 Feb 2015 15:11:46 +0100 Subject: [PATCH] Page is auto zoomed on tapping URL bar. [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 --- tizen_src/impl/browser/renderer_host/render_widget_host_view_efl.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tizen_src/impl/browser/renderer_host/render_widget_host_view_efl.cc b/tizen_src/impl/browser/renderer_host/render_widget_host_view_efl.cc index 95ff7ec..a24a792 100644 --- a/tizen_src/impl/browser/renderer_host/render_widget_host_view_efl.cc +++ b/tizen_src/impl/browser/renderer_host/render_widget_host_view_efl.cc @@ -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(); } -- 2.7.4