mirror of
https://github.com/transmission/transmission.git
synced 2025-12-24 20:35:36 +00:00
#4833 regression: Select / Deselect transfers option missing
This commit is contained in:
@@ -396,6 +396,9 @@
|
||||
<li id="context_verify">Verify Local Data</li>
|
||||
<li class="separator"></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>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -183,7 +183,9 @@ Transmission.prototype =
|
||||
context_move_top: function() { tr.moveTop(); },
|
||||
context_move_up: function() { tr.moveUp(); },
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user