From 6326902287b7aff9072fd1a0bdba6e21c4516d4b Mon Sep 17 00:00:00 2001 From: Asmageddon Date: Sat, 26 May 2012 23:02:45 +0200 Subject: [PATCH] Do not empty search_string so user can continue to cycle through results with 'n' key --- deluge/ui/console/modes/alltorrents.py | 1 - 1 file changed, 1 deletion(-) diff --git a/deluge/ui/console/modes/alltorrents.py b/deluge/ui/console/modes/alltorrents.py index 0113acdd5..f5db7b011 100644 --- a/deluge/ui/console/modes/alltorrents.py +++ b/deluge/ui/console/modes/alltorrents.py @@ -890,7 +890,6 @@ class AllTorrents(BaseMode, component.Component): elif c == curses.KEY_END: self.cursor = len(self.search_string) elif c in [10, curses.KEY_ENTER]: - self.search_string = None self.entering_search = False self.search_state = SEARCH_EMPTY elif c == 27: