[M120 Migration][VD] Fix window lost focus after dialog close
[platform/framework/web/chromium-efl.git] / content / browser / renderer_host / render_widget_host_view_aura.cc
index 9bfdcaf..d737845 100644 (file)
@@ -2366,11 +2366,13 @@ void RenderWidgetHostViewAura::OnWindowFocused(aura::Window* gained_focus,
   LOG(INFO) << "OnWindowFocused, Gained : " << gained_focus
             << ", Lost : " << lost_focus;
   if (window_ == gained_focus) {
+#if !BUILDFLAG(IS_TIZEN_TV)
     // We need to honor input bypass if the associated tab does not want input.
     // This gives the current focused window a chance to be the text input
     // client and handle events.
     if (host()->IsIgnoringInputEvents())
       return;
+#endif
 
     host()->GotFocus();
     UpdateActiveState(true);