Bug 956858: Make menu inaccessible during editing mode. r=wesj

This commit is contained in:
Michael Comella 2014-01-08 12:03:04 -08:00
Родитель 9b77d562d6
Коммит c4fca8df08
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -2473,6 +2473,11 @@ public class BrowserApp extends GeckoApp
@Override
public void openOptionsMenu() {
// Disable menu access (for hardware buttons) when the software menu button is inaccessible.
if (mBrowserToolbar.isEditing()) {
return;
}
if (areTabsShown()) {
mTabsPanel.showMenu();
return;