Bug 261544: Menu items "Delete host" and "Delete domain" aren't visible when history tree is empty

r+sr=Neil
This commit is contained in:
Stefan.Borggraefe%gmx.de 2005-04-01 00:13:06 +00:00
Родитель ad32ad89eb
Коммит 36c8943322
1 изменённых файлов: 5 добавлений и 1 удалений

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

@ -110,7 +110,11 @@ function HistoryCommonInit()
if (gHistoryStatus)
gHistoryTree.focus();
gHistoryTree.view.selection.select(0);
if (gHistoryTree.view.rowCount > 0)
gHistoryTree.view.selection.select(0);
else if (gHistoryStatus)
updateHistoryCommands();
}
function HistoryPanelUnload()