From 0e50faf6504756d01a8b90cc7d09a6d818439d3e Mon Sep 17 00:00:00 2001 From: yumoqing Date: Mon, 16 Mar 2020 10:06:42 +0800 Subject: [PATCH] bugfix --- kivyblocks/widgetExt/androidwebview.py | 1 - 1 file changed, 1 deletion(-) diff --git a/kivyblocks/widgetExt/androidwebview.py b/kivyblocks/widgetExt/androidwebview.py index deb46ce..5bdb82d 100755 --- a/kivyblocks/widgetExt/androidwebview.py +++ b/kivyblocks/widgetExt/androidwebview.py @@ -29,7 +29,6 @@ class AWebView(Widget): wvc = WebViewClient() self.webview.setWebViewClient(wvc) activity.setContentView(self.webview) - self.add_widget(self.webview) if self.baseUrl is not None: self.webview.loadUrl(self.baseUrl) print('go to the url=',self.baseUrl)