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 09:35:37 -07:00
Родитель f8a9b01a2b
Коммит 95ff4487c3
1 изменённых файлов: 4 добавлений и 1 удалений

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

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