diff options
| author | Fraxinas <andreas.frisch@multimedia-labs.de> | 2008-11-18 13:14:46 +0100 |
|---|---|---|
| committer | Fraxinas <andreas.frisch@multimedia-labs.de> | 2008-11-18 13:14:46 +0100 |
| commit | 623abfc754b4a95f79f90cf0498300d16b52f894 (patch) | |
| tree | 7770f5aeb736dad7987e012939a87d29f94faba1 /lib/python | |
| parent | 93105cf34883745d8d886de926631d25c587a1f2 (diff) | |
| download | enigma2-623abfc754b4a95f79f90cf0498300d16b52f894.tar.gz enigma2-623abfc754b4a95f79f90cf0498300d16b52f894.zip | |
scroll to bottom of output after execution
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Screens/Console.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/python/Screens/Console.py b/lib/python/Screens/Console.py index b57f2400..c6b156cf 100644 --- a/lib/python/Screens/Console.py +++ b/lib/python/Screens/Console.py @@ -55,6 +55,7 @@ class Console(Screen): str = self["text"].getText() str += _("Execution finished!!"); self["text"].setText(str) + self["text"].lastPage() if self.finishedCallback is not None: self.finishedCallback() if not retval and self.closeOnSuccess: @@ -67,4 +68,4 @@ class Console(Screen): self.container.dataAvail.remove(self.dataAvail) def dataAvail(self, str): - self["text"].setText(self["text"].getText() + str) + self["text"].setText(self["text"].getText() + str)
\ No newline at end of file |
