From cd03824502da8c6f0a9df0649c2f6a35cd66225a Mon Sep 17 00:00:00 2001 From: Zach Tibbitts Date: Fri, 23 Feb 2007 03:46:01 +0000 Subject: [PATCH] queueing bugfix --- src/delugegtk.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/delugegtk.py b/src/delugegtk.py index 2274f948a..bbbc39f46 100644 --- a/src/delugegtk.py +++ b/src/delugegtk.py @@ -761,7 +761,7 @@ class DelugeGTK: def q_torrent_down(self, obj=None): torrent = self.get_selected_torrent() if torrent is not None: - self.manager.queue_up(torrent) + self.manager.queue_down(torrent) def q_to_bottom(self, widget): torrent = self.get_selected_torrent()