1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-03-10 04:11:16 +00:00

Fix WebUI Auto TMM context menu bug

When multiple torrents are selected with different Auto TMM values, the Auto TMM context menu option is hidden. This option is never unhidden, requiring a refresh of the page.
This commit is contained in:
Thomas Piccirello 2018-10-15 21:08:42 -04:00
parent 5ccd4b3611
commit bab18036aa

View File

@ -345,10 +345,13 @@ var TorrentsTableContextMenu = new Class({
else if (!there_are_paused && !there_are_force_start)
this.hideItem('Start');
if (!all_are_auto_tmm && there_are_auto_tmm)
if (!all_are_auto_tmm && there_are_auto_tmm) {
this.hideItem('AutoTorrentManagement');
else
}
else {
this.showItem('AutoTorrentManagement');
this.setItemChecked('AutoTorrentManagement', all_are_auto_tmm);
}
},