Bug 820022 - Add null check for layerView. r=margaret

This commit is contained in:
Wes Johnston 2013-04-01 17:36:04 -07:00
Родитель 0128a15263
Коммит 359250f12b
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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;
}