Bug 1693501 - Remove a hack that interferes with themed treeheaders in AB. r=darktrojan

This commit is contained in:
Richard Marti 2021-02-19 22:18:21 +02:00
Родитель 39eccd7922
Коммит 0d98a30fd9
1 изменённых файлов: 0 добавлений и 5 удалений

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

@ -364,11 +364,6 @@ function UpdateSortIndicators(colID, sortDirection) {
if (currCol != sortedColumn && currCol.localName == "treecol") {
currCol.removeAttribute("sortDirection");
}
// Change the column header's border colour to force it to redraw.
// Otherwise redrawing doesn't happen until something else causes it to.
currCol.style.borderColor = currCol.style.borderColor
? null
: "transparent";
currCol = currCol.nextElementSibling;
}
}