mirror of
https://github.com/logos-storage/deluge.git
synced 2026-01-07 23:53:12 +00:00
Fix Webui files-tab menu setting wrong priority
This commit is contained in:
parent
a932767545
commit
05f30b58c1
@ -250,21 +250,21 @@ deluge.menus.filePriorities = new Ext.menu.Menu({
|
||||
id: 'no_download',
|
||||
text: _('Do Not Download'),
|
||||
iconCls: 'icon-do-not-download',
|
||||
filePriority: 0
|
||||
filePriority: FILE_PRIORITY['Do Not Download']
|
||||
}, {
|
||||
id: 'normal',
|
||||
text: _('Normal Priority'),
|
||||
iconCls: 'icon-normal',
|
||||
filePriority: 1
|
||||
filePriority: FILE_PRIORITY['Normal Priority']
|
||||
}, {
|
||||
id: 'high',
|
||||
text: _('High Priority'),
|
||||
iconCls: 'icon-high',
|
||||
filePriority: 2
|
||||
filePriority: FILE_PRIORITY['High Priority']
|
||||
}, {
|
||||
id: 'highest',
|
||||
text: _('Highest Priority'),
|
||||
iconCls: 'icon-highest',
|
||||
filePriority: 5
|
||||
filePriority: FILE_PRIORITY['Highest Priority']
|
||||
}]
|
||||
});
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user