From e263db90ce7908e7524996f05ce68f5323af0b19 Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Sun, 12 May 2013 02:56:51 +0100 Subject: [PATCH] Console UI: Fix problem displaying first-run message --- 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 3dcb30c96..2865fc082 100644 --- a/deluge/ui/console/modes/alltorrents.py +++ b/deluge/ui/console/modes/alltorrents.py @@ -335,7 +335,7 @@ class AllTorrents(BaseMode, component.Component): self.legacy_mode = Legacy(self.stdscr, self.encoding) if self.config["first_run"]: - self.popup = Popup(self,"Welcome to Deluge" ,init_lines=self.__help_lines, height_req=0.75, width_req=65) + self.popup = MessagePopup(self,"Welcome to Deluge", HELP_STR, width_req=0.75) self.config["first_run"] = False self.config.save()