From e14005abab6d9410dc93d0a47f60e8cfc1d9c42a Mon Sep 17 00:00:00 2001 From: Benjamin Tan Date: Thu, 6 Oct 2016 18:11:21 +0800 Subject: [PATCH] Add "Paste Torrent Address" button to context menu. Closes #834. --- src/renderer/controllers/torrent-list-controller.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/renderer/controllers/torrent-list-controller.js b/src/renderer/controllers/torrent-list-controller.js index 432827dc..77880d3a 100644 --- a/src/renderer/controllers/torrent-list-controller.js +++ b/src/renderer/controllers/torrent-list-controller.js @@ -216,6 +216,13 @@ module.exports = class TorrentListController { { label: 'Save Torrent File As...', click: () => dispatch('saveTorrentFileAs', torrentSummary.torrentKey) + }, + { + type: 'separator' + }, + { + label: 'Paste Torrent Address', + role: 'paste' } ]