mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-16 02:03:07 -07:00
- Attempt to fix icon flickering in webui
This commit is contained in:
parent
949eb2b5f5
commit
0177e1fee4
1 changed files with 3 additions and 1 deletions
|
@ -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){
|
||||||
tds[i].set('html', el);
|
if(tds[i].get('html') != el) {
|
||||||
|
tds[i].set('html', el);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue