mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-02 22:48:40 +00:00
Fix #2071 : KeyError in gtkui when file priority set to value '3'
Bug results from setting file priority value in core which does not exist in the FILE_PRIORITY dict used by UIs.
This commit is contained in:
parent
fe6e9ec467
commit
5572f61022
1 changed files with 3 additions and 0 deletions
|
@ -117,7 +117,10 @@ FILE_PRIORITY = {
|
||||||
0: "Do Not Download",
|
0: "Do Not Download",
|
||||||
1: "Normal Priority",
|
1: "Normal Priority",
|
||||||
2: "High Priority",
|
2: "High Priority",
|
||||||
|
3: "High Priority",
|
||||||
|
4: "High Priority",
|
||||||
5: "High Priority",
|
5: "High Priority",
|
||||||
|
6: "High Priority",
|
||||||
7: "Highest Priority",
|
7: "Highest Priority",
|
||||||
"Do Not Download": 0,
|
"Do Not Download": 0,
|
||||||
"Normal Priority": 1,
|
"Normal Priority": 1,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue