mirror of
https://github.com/transmission/transmission
synced 2024-12-25 09:13:06 +00:00
#4833 regression: Select / Deselect transfers option missing
This commit is contained in:
parent
4462754c2a
commit
d6c1db86cd
2 changed files with 6 additions and 1 deletions
|
@ -396,6 +396,9 @@
|
||||||
<li id="context_verify">Verify Local Data</li>
|
<li id="context_verify">Verify Local Data</li>
|
||||||
<li class="separator"></li>
|
<li class="separator"></li>
|
||||||
<li id="context_reannounce">Ask tracker for more peers</li>
|
<li id="context_reannounce">Ask tracker for more peers</li>
|
||||||
|
<li class="separator"></li>
|
||||||
|
<li id="context_select_all">Select All</li>
|
||||||
|
<li id="context_deselect_all">Deselect All</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -183,7 +183,9 @@ Transmission.prototype =
|
||||||
context_move_top: function() { tr.moveTop(); },
|
context_move_top: function() { tr.moveTop(); },
|
||||||
context_move_up: function() { tr.moveUp(); },
|
context_move_up: function() { tr.moveUp(); },
|
||||||
context_move_down: function() { tr.moveDown(); },
|
context_move_down: function() { tr.moveDown(); },
|
||||||
context_move_bottom: function() { tr.moveBottom(); }
|
context_move_bottom: function() { tr.moveBottom(); },
|
||||||
|
context_select_all: function() { tr.selectAll(); },
|
||||||
|
context_deselect_all: function() { tr.deselectAll(); }
|
||||||
};
|
};
|
||||||
|
|
||||||
// Set up the context menu
|
// Set up the context menu
|
||||||
|
|
Loading…
Reference in a new issue