From d76f6807ccaaa8af63dcdc9f322555dd1312eda3 Mon Sep 17 00:00:00 2001 From: Chris Cummer Date: Thu, 4 Jul 2019 20:36:03 -0700 Subject: [PATCH] Redraw when a Transmission torrent is removed --- modules/transmission/widget.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/transmission/widget.go b/modules/transmission/widget.go index d53297e1..c31be5e8 100644 --- a/modules/transmission/widget.go +++ b/modules/transmission/widget.go @@ -125,6 +125,8 @@ func (widget *Widget) deleteSelectedTorrent() { } widget.client.TorrentRemove(removePayload) + + widget.display() } // pauseUnpauseTorrent either pauses or unpauses the downloading and seeding of the selected torrent