зеркало из https://github.com/mozilla/pjs.git
Bug 723917 - NullPointerException when removing a menu item [r=sriram]
This commit is contained in:
Родитель
652e8966c3
Коммит
f318a0e25c
|
@ -905,10 +905,11 @@ abstract public class GeckoApp
|
|||
ExtraMenuItem item = i.next();
|
||||
if (item.id == id) {
|
||||
sExtraMenuItems.remove(item);
|
||||
if (sMenu == null)
|
||||
return;
|
||||
MenuItem menu = sMenu.findItem(id);
|
||||
if (menu != null)
|
||||
sMenu.removeItem(id);
|
||||
return;
|
||||
}
|
||||
}
|
||||
} else if (event.equals("Toast:Show")) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче