mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-29 22:20:53 +03:00
WebUI: don't disable combobox for file priority
Closes #17794. PR #17797.
This commit is contained in:
parent
616057a433
commit
2b385e5f92
1 changed files with 0 additions and 4 deletions
|
@ -182,7 +182,6 @@ window.qBittorrent.PropFiles = (function() {
|
|||
select.set('id', 'comboPrio' + id);
|
||||
select.set('data-id', id);
|
||||
select.set('data-file-id', fileId);
|
||||
select.set('disabled', is_seed);
|
||||
select.addClass('combo_priority');
|
||||
select.addEvent('change', fileComboboxChanged);
|
||||
|
||||
|
@ -204,9 +203,6 @@ window.qBittorrent.PropFiles = (function() {
|
|||
|
||||
if (parseInt(combobox.value) !== selectedPriority)
|
||||
selectComboboxPriority(combobox, selectedPriority);
|
||||
|
||||
if (combobox.disabled !== is_seed)
|
||||
combobox.disabled = is_seed;
|
||||
};
|
||||
|
||||
const selectComboboxPriority = function(combobox, priority) {
|
||||
|
|
Loading…
Reference in a new issue