mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-12-26 17:58:19 +03:00
parent
7a93fae6e4
commit
667f84995c
2 changed files with 5 additions and 5 deletions
|
@ -633,7 +633,7 @@ initializeWindows = function() {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
['decrease_prio', 'increase_prio', 'top_prio', 'bottom_prio'].each(function(item) {
|
['decreasePrio', 'increasePrio', 'topPrio', 'bottomPrio'].each(function(item) {
|
||||||
addClickEvent(item, function(e) {
|
addClickEvent(item, function(e) {
|
||||||
new Event(e).stop();
|
new Event(e).stop();
|
||||||
setPriorityFN(item);
|
setPriorityFN(item);
|
||||||
|
|
|
@ -43,16 +43,16 @@
|
||||||
renameFN();
|
renameFN();
|
||||||
},
|
},
|
||||||
prioTop: function(element, ref) {
|
prioTop: function(element, ref) {
|
||||||
setPriorityFN('top_prio');
|
setPriorityFN('topPrio');
|
||||||
},
|
},
|
||||||
prioUp: function(element, ref) {
|
prioUp: function(element, ref) {
|
||||||
setPriorityFN('increase_prio');
|
setPriorityFN('increasePrio');
|
||||||
},
|
},
|
||||||
prioDown: function(element, ref) {
|
prioDown: function(element, ref) {
|
||||||
setPriorityFN('decrease_prio');
|
setPriorityFN('decreasePrio');
|
||||||
},
|
},
|
||||||
prioBottom: function(element, ref) {
|
prioBottom: function(element, ref) {
|
||||||
setPriorityFN('bottom_prio');
|
setPriorityFN('bottomPrio');
|
||||||
},
|
},
|
||||||
|
|
||||||
DownloadLimit: function(element, ref) {
|
DownloadLimit: function(element, ref) {
|
||||||
|
|
Loading…
Reference in a new issue