mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Backed out changeset 95562517dc8c (bug 938818) for Android crashes.
This commit is contained in:
parent
69be909085
commit
6ce6c0bddf
@ -1657,7 +1657,7 @@ abstract public class BrowserApp extends GeckoApp
|
||||
private void hideWebContent() {
|
||||
// The view is set to INVISIBLE, rather than GONE, to avoid
|
||||
// the additional requestLayout() call.
|
||||
mLayerView.hide();
|
||||
mLayerView.setVisibility(View.INVISIBLE);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -1684,7 +1684,7 @@ abstract public class BrowserApp extends GeckoApp
|
||||
mHideWebContentOnAnimationEnd = false;
|
||||
|
||||
// Display the previously hidden web content (which prevented screen reader access).
|
||||
mLayerView.show();
|
||||
mLayerView.setVisibility(View.VISIBLE);
|
||||
|
||||
if (mHomePager != null) {
|
||||
mHomePager.hide();
|
||||
|
Loading…
Reference in New Issue
Block a user