Browse Source

WebUI: don't disable combobox for file priority

Closes #17794.
PR #17797.
adaptive-webui-19844
Chocobo1 2 years ago committed by GitHub
parent
commit
2b385e5f92
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/webui/www/private/scripts/prop-files.js

4
src/webui/www/private/scripts/prop-files.js

@ -182,7 +182,6 @@ window.qBittorrent.PropFiles = (function() { @@ -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() { @@ -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…
Cancel
Save