From 4ff0fb19ee4752f91249efb618b4a3cd0d611495 Mon Sep 17 00:00:00 2001 From: Nick Date: Tue, 15 Feb 2011 19:36:17 +0100 Subject: [PATCH] left arrow goes back to overview from torrent details --- deluge/ui/console/modes/torrentdetail.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/ui/console/modes/torrentdetail.py b/deluge/ui/console/modes/torrentdetail.py index 6beaa7ed2..646e00b02 100644 --- a/deluge/ui/console/modes/torrentdetail.py +++ b/deluge/ui/console/modes/torrentdetail.py @@ -439,7 +439,7 @@ class TorrentDetail(BaseMode, component.Component): self.back_to_overview() return - if c == 27: + if c == 27 or c == curses.KEY_LEFT: self.back_to_overview() return