Bug 393814 - deleting a profile in profile manager should not leave no profile selected

p=Ray Kiddy <ray@ganymede.org>
r=bsmedberg
This commit is contained in:
asqueella%gmail.com 2007-09-02 16:35:37 +00:00
Родитель 3a938e82d3
Коммит cc00366138
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -274,7 +274,10 @@ function ConfirmDelete()
} }
selectedProfile.remove(deleteFiles); selectedProfile.remove(deleteFiles);
selectedItem.parentNode.removeChild(selectedItem); profileList.removeChild(selectedItem);
if (profileList.firstChild != undefined) {
profileList.selectItem(profileList.firstChild);
}
return true; return true;
} }