From b9d84be3418d02ea36dc124511723a83db6857db Mon Sep 17 00:00:00 2001 From: Damien Churchill Date: Thu, 19 Feb 2009 20:12:13 +0000 Subject: [PATCH] clear the torrent grid when stopping the ui --- deluge/ui/web/js/deluge-ui.js | 1 + 1 file changed, 1 insertion(+) diff --git a/deluge/ui/web/js/deluge-ui.js b/deluge/ui/web/js/deluge-ui.js index 1b244523a..391e8d855 100644 --- a/deluge/ui/web/js/deluge-ui.js +++ b/deluge/ui/web/js/deluge-ui.js @@ -172,6 +172,7 @@ Deluge.Ui = { if (this.running) { $clear(this.running); this.running = false; + Deluge.Torrents.store.loadData([]); } } }