Bug 416554 - Missing column sort indicator in Preferences ▸ Privacy ▸ Show Cookies... r=dao

This commit is contained in:
Michael Kohler 2010-10-24 11:05:16 +02:00
Родитель 718cf3f036
Коммит 105dadd157
1 изменённых файлов: 13 добавлений и 0 удалений

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

@ -762,6 +762,19 @@ var gCookiesWindow = {
this._view._filterSet.reverse();
}
// Adjust the Sort Indicator
var domainCol = document.getElementById("domainCol");
var nameCol = document.getElementById("nameCol");
var sortOrderString = ascending ? "ascending" : "descending";
if (aProperty == "rawHost") {
domainCol.setAttribute("sortDirection", sortOrderString);
nameCol.removeAttribute("sortDirection");
}
else {
nameCol.setAttribute("sortDirection", sortOrderString);
domainCol.removeAttribute("sortDirection");
}
this._view._invalidateCache(0);
this._view.selection.clearSelection();
this._view.selection.select(0);