Bug 1000377 - Always show the toggleable toolbars dropdown in customization mode even if the only toolbar available is the bookmarks toolbar. r=MattN

This commit is contained in:
Jared Wein 2014-04-23 12:04:00 +02:00
Родитель 8832b5d42b
Коммит 6d168c03c6
1 изменённых файлов: 1 добавлений и 2 удалений

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

@ -161,8 +161,7 @@ CustomizeMode.prototype = {
let toolbarVisibilityBtn = document.getElementById(kToolbarVisibilityBtn);
let togglableToolbars = window.getTogglableToolbars();
let bookmarksToolbar = document.getElementById("PersonalToolbar");
if (togglableToolbars.length == 0 ||
(togglableToolbars.length == 1 && togglableToolbars[0] == bookmarksToolbar)) {
if (togglableToolbars.length == 0) {
toolbarVisibilityBtn.setAttribute("hidden", "true");
} else {
toolbarVisibilityBtn.removeAttribute("hidden");