1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-02-02 09:55:55 +00:00

- Attempt to fix icon flickering in webui

This commit is contained in:
Christophe Dumez 2008-10-28 21:17:17 +00:00
parent 949eb2b5f5
commit 0177e1fee4

View File

@ -166,7 +166,9 @@ var dynamicTable = new Class ({
{ {
var tds = tr.getElements('td'); var tds = tr.getElements('td');
row.each(function(el, i){ row.each(function(el, i){
if(tds[i].get('html') != el) {
tds[i].set('html', el); tds[i].set('html', el);
}
}); });
return true; return true;
} }