From: Sanghyup Lee Date: Fri, 25 Aug 2017 04:26:45 +0000 (+0000) Subject: Fix invisible webview issue X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F10%2F146110%2F8;p=platform%2Fframework%2Fweb%2Fcrosswalk-tizen.git Fix invisible webview issue We should make NativeView visible with evas_object_show. Change-Id: I947c34c43fcb4401654475a6c26dfe58264e719a Signed-off-by: Sanghyup Lee --- diff --git a/atom/browser/native_window_efl.cc b/atom/browser/native_window_efl.cc index de63057..7b76bfb 100644 --- a/atom/browser/native_window_efl.cc +++ b/atom/browser/native_window_efl.cc @@ -81,6 +81,7 @@ void NativeWindowEfl::Show() { if (!window_ || !web_view_) LOG(ERROR) << "There's no available window or webview."; evas_object_show(window_); + evas_object_show(web_view_); } void NativeWindowEfl::ShowInactive() { @@ -88,6 +89,7 @@ void NativeWindowEfl::ShowInactive() { } void NativeWindowEfl::Hide() { + evas_object_hide(web_view_); evas_object_hide(window_); }