зеркало из https://github.com/mozilla/gecko-dev.git
Bug 820022 - Add null check for layerView. r=margaret
This commit is contained in:
Родитель
0128a15263
Коммит
359250f12b
|
@ -2335,7 +2335,7 @@ abstract public class GeckoApp
|
|||
return;
|
||||
}
|
||||
|
||||
if (mLayerView.isFullScreen()) {
|
||||
if (mLayerView != null && mLayerView.isFullScreen()) {
|
||||
GeckoAppShell.sendEventToGecko(GeckoEvent.createBroadcastEvent("FullScreen:Exit", null));
|
||||
return;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче