Skip to content

Commit

Permalink
commented out layout.bringToFront() in CWebViewPlugin.java.
Browse files Browse the repository at this point in the history
  • Loading branch information
KojiNakamaru committed Oct 10, 2023
1 parent ba71412 commit 999b753
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -891,7 +891,7 @@ public void OnApplicationPause(final boolean paused) {
mWebView.onResume();
mWebView.resumeTimers();
if (forceBringToFront && layout != null) {
layout.bringToFront();
//layout.bringToFront();
}
}
}});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1248,7 +1248,7 @@ public void OnApplicationPause(boolean paused) {
mWebView.onResume();
mWebView.resumeTimers();
if (forceBringToFront && layout != null) {
layout.bringToFront();
//layout.bringToFront();
}
}
}});
Expand Down

0 comments on commit 999b753

Please sign in to comment.