From ce2516ab2c667cffdd965807af285851ccf03728 Mon Sep 17 00:00:00 2001 From: Nick Date: Tue, 15 Feb 2011 20:15:43 +0100 Subject: [PATCH] search field is black,white --- deluge/ui/console/modes/alltorrents.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/ui/console/modes/alltorrents.py b/deluge/ui/console/modes/alltorrents.py index c4b831fbd..e9d1899d2 100644 --- a/deluge/ui/console/modes/alltorrents.py +++ b/deluge/ui/console/modes/alltorrents.py @@ -469,7 +469,7 @@ class AllTorrents(BaseMode): self.add_string(1,self.column_string) if self.entering_search: - self.add_string(self.rows - 1,"Search torrents: %s"%self.search_string) + self.add_string(self.rows - 1,"{!black,white!}Search torrents: %s"%self.search_string) else: hstr = "%sPress [h] for help"%(" "*(self.cols - len(self.statusbars.bottombar) - 10)) self.add_string(self.rows - 1, "%s%s"%(self.statusbars.bottombar,hstr))