mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-20 21:33:27 -07:00
add Default to dropdown since the GUI allows it
This commit is contained in:
parent
b7d67ec433
commit
b2189ae724
1 changed files with 2 additions and 2 deletions
|
@ -66,9 +66,8 @@
|
|||
document.getElementById("setInactiveMinutes").checked = true;
|
||||
document.getElementById("inactiveMinutes").value = values.inactiveSeedingTimeLimit;
|
||||
}
|
||||
if (values.shareLimitAction >= 0)
|
||||
document.getElementById("action").value = values.shareLimitAction.toString();
|
||||
|
||||
document.getElementById("action").value = values.shareLimitAction.toString();
|
||||
}
|
||||
|
||||
shareLimitChanged();
|
||||
|
@ -193,6 +192,7 @@
|
|||
<div style="margin-left: 40px; margin-bottom: 5px;">
|
||||
<label id="actionListLabel" for="action">QBT_TR(Action when the limit is reached)QBT_TR[CONTEXT=UpDownRatioDialog]</label>
|
||||
<select id="action" aria-labelledby="actionListLabel">
|
||||
<option value="-1">Default</option>
|
||||
<option value="0">Stop torrent</option>
|
||||
<option value="1">Remove torrent</option>
|
||||
<option value="3">Remove torrent and its content</option>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue